From: sev Date: Sun, 31 Dec 2023 08:05:13 +0000 (-0600) Subject: install.sh: fix cd test print X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/commitdiff_plain/398a3a5e880fb4f070a9eb2ce29dbaa5827d937c install.sh: fix cd test print --- diff --git a/install.sh b/install.sh index 49b6af8..88a80ad 100755 --- a/install.sh +++ b/install.sh @@ -23,7 +23,7 @@ if [ ${DOTFILES_TEST+x} = x ]; then echo "Running test -- no changes will be applied" devnull=/dev/stdout _cd() { - echo "-- cd $* --> $PWD"; + echo "-- cd $PWD --> $*"; cd $*; } alias cd="_cd"