FIX print the right dir

This commit is contained in:
Nathan Dwarshuis 2021-06-12 01:23:33 -04:00
parent 19b2e21c51
commit d854f1308b
1 changed files with 1 additions and 1 deletions

View File

@ -8,8 +8,8 @@
run_stack_in_dir () {
local cur
cur="$(pwd)"
echo "building binaries in $cur"
cd "$1" || return 1
echo "building binaries in $1"
stack install
cd "$cur" || return 1
}