Commit 1b063b7f178391aefd81964a7346138408718671

Thomas de Grivel 2023-01-26T14:04:04

color verbose messages

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/share/shpkg/shpkg.subr b/share/shpkg/shpkg.subr
index 4167a43..e900a14 100644
--- a/share/shpkg/shpkg.subr
+++ b/share/shpkg/shpkg.subr
@@ -56,9 +56,9 @@ export LDFLAGS="${LDFLAGS} -L${SHPKG_LIB_DIR}"
 export PKG_CONFIG_PATH="${SHPKG_LIB_DIR}/pkgconfig"
 
 verbose () {
-    echo -e -n "\e[104m"
+    echo -e -n '\e[0;104m'
     echo "$@"
-    echo -e -n "\e[0m"
+    echo -e -n '\e[0m'
     "$@"
 }