diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-18 14:38:37 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-19 13:02:13 -0400 |
commit | aa0843ae50b09bad3ece21bd310b849d034efac2 (patch) | |
tree | e45c98a5b3e6321a76ece3e32349106e9dfc204e /config | |
parent | 3eb6e9c065007553ba75b473611becf8b64b3b46 (diff) | |
download | bfs-aa0843ae50b09bad3ece21bd310b849d034efac2.tar.xz |
config: Use ✔/✘ rather than [y]/[n]
Diffstat (limited to 'config')
-rw-r--r-- | config/pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/pkg.mk b/config/pkg.mk index d2d77b0..6f868be 100644 --- a/config/pkg.mk +++ b/config/pkg.mk @@ -17,7 +17,7 @@ default:: @if [ "${IS_V}" ]; then \ cat ${TARGET}; \ elif grep -q PKGS ${TARGET}; then \ - printf '[ GEN] %-18s [y]\n' ${SHORT}; \ + printf '[ GEN] %-18s ✔\n' ${SHORT}; \ else \ - printf '[ GEN] %-18s [n]\n' ${SHORT}; \ + printf '[ GEN] %-18s ✘\n' ${SHORT}; \ fi |