summaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
Diffstat (limited to 'functions')
-rw-r--r--functions3
1 files changed, 3 insertions, 0 deletions
diff --git a/functions b/functions
index 9b9d66d..d9abf46 100644
--- a/functions
+++ b/functions
@@ -1,3 +1,5 @@
+#!/bin/bash
+
msg () { [ "${QUIET}" = "n" ] && echo $@; }
err () { echo "ERROR: $@" >&2; }
die () { echo "FATAL: $@" >&2; cleanup; exit 1; }
@@ -266,4 +268,5 @@ parse_hook() {
add_file "${HOOKDIR}/${SCRIPT}" "/hooks/${SCRIPT}"
fi
}
+
# vim: set ft=sh ts=4 sw=4 et: