From d854f1308bfcfc5a4944c37da6db353dd3b8171b Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sat, 12 Jun 2021 01:23:33 -0400 Subject: [PATCH] FIX print the right dir --- dot_bin/executable_bootstrap_build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_bin/executable_bootstrap_build b/dot_bin/executable_bootstrap_build index 8939d98..5be452f 100644 --- a/dot_bin/executable_bootstrap_build +++ b/dot_bin/executable_bootstrap_build @@ -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 }