aboutsummaryrefslogtreecommitdiff
path: root/lib/util.bash
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.bash')
-rw-r--r--lib/util.bash1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/util.bash b/lib/util.bash
index 92ff1bc..97131c3 100644
--- a/lib/util.bash
+++ b/lib/util.bash
@@ -3,6 +3,7 @@
# Change the working directory. In usage, this is the same as using cd,
# however, it will make additional checks to ensure everything is going fine.
chgdir() {
+ debug "Changing workdir to $1"
cd -- "$1" || die "Failed to change directory to $1"
}