summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-04-18 14:38:37 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-04-19 13:02:13 -0400
commitaa0843ae50b09bad3ece21bd310b849d034efac2 (patch)
treee45c98a5b3e6321a76ece3e32349106e9dfc204e
parent3eb6e9c065007553ba75b473611becf8b64b3b46 (diff)
downloadbfs-aa0843ae50b09bad3ece21bd310b849d034efac2.tar.xz
config: Use ✔/✘ rather than [y]/[n]
-rw-r--r--config/pkg.mk4
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