aboutsummaryrefslogtreecommitdiff
path: root/lib/funcs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/funcs.sh')
-rw-r--r--lib/funcs.sh17
1 files changed, 6 insertions, 11 deletions
diff --git a/lib/funcs.sh b/lib/funcs.sh
index 2126e9a..0122c60 100644
--- a/lib/funcs.sh
+++ b/lib/funcs.sh
@@ -100,17 +100,12 @@ choose_target() {
fi
}
-housekeeping() {
- git submodule init
- git submodule update
-
- #.files is used to tell scripts where to look for the dotfiles
- [ -f "$HOME/.files" ] && source "$HOME/.files"
- if [ "$DOTFILEBASE" != "$(pwd)" ] && yes_no "'.files' out of date. Regenerate?"; then
- echo "DOTFILEBASE=\"$(pwd)\"" > $HOME/.files
+debug() {
+ if [ "$DEBUG" = "yes" ]; then
+ echo "[DEBUG] $@"
fi
+}
- if [ ! -f "$HOME/.files.config" ] && yes_no ".files.config does not exist. Populate with defaults?"; then
- cp "config.default" "$HOME/.files.config"
- fi
+warning() {
+ echo "[WARNING] $@"
}