summaryrefslogtreecommitdiffstats
path: root/nix-utils.sh
diff options
context:
space:
mode:
Diffstat (limited to 'nix-utils.sh')
-rw-r--r--nix-utils.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/nix-utils.sh b/nix-utils.sh
index a34a2ee..de1f76f 100644
--- a/nix-utils.sh
+++ b/nix-utils.sh
@@ -6,6 +6,21 @@ Yellow='\e[0;33m'
Green='\e[0;32m'
#
+# Do something explicitely without verbosity output
+#
+__quiet__() {
+ VERBOSE=0 $*
+}
+
+#
+# Do something explicitely without debug and verbosity output (with no output at
+# all therefor)
+#
+__silent__() {
+ DEBUG=0 __quiet__ $*
+}
+
+#
# Check whether a string (2nd arg) contains a substring (1st arg)
#
stringcontains() {