aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsquashfu7
1 files changed, 3 insertions, 4 deletions
diff --git a/squashfu b/squashfu
index d66b8ef..fbaf43c 100755
--- a/squashfu
+++ b/squashfu
@@ -3,7 +3,7 @@
# Informational output w/ happy colors
DEBUG=true
debug () {
- [[ $DEBUG ]] && echo -e '\033[1;33m??\033[1;m ' $*
+ [[ $DEBUG ]] && echo -e '\033[1;33mDEBUG ::\033[1;m ' $*
}
info () {
@@ -11,12 +11,11 @@ info () {
}
die () {
- echo -e '\033[1;31m!!\033[1;m ' $*
+ echo -e '\033[1;31mERROR ::\033[1;m ' $*
exit 1
}
-# MAKE SURE TO CHANGE THIS BEFORE PUSHING PUBLIC
-CONFIG=/home/haruko/dev/git/squashfu/etc/squashfu
+CONFIG=/etc/squashfu
source $CONFIG
[[ $? -gt 0 ]] && die "Error in config file. Please check your syntax"