aboutsummaryrefslogtreecommitdiff
path: root/lib/util.bash
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-03-28 07:25:43 +0100
committerPatrick Spek <p.spek@tyil.nl>2020-03-28 07:25:43 +0100
commit1621c1109bab17cc2d29f948b25989cd97a56618 (patch)
treec9a106df1ea8170bd88469a3b7d3b135f154d3ac /lib/util.bash
parent060e616a6e77eb32b37aae24b629970f8efcbac0 (diff)
Implement test action
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"
}