aboutsummaryrefslogtreecommitdiff
path: root/compile_lib.sh
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-01-24 01:37:52 -0800
committerBruce Hill <bitbucket@bruce-hill.com>2018-01-24 01:38:02 -0800
commit3e1e32e9537565248840a81c3b5cc19655ce845b (patch)
tree21a5f191b58c6cd3e3a520a7cded5e9a2fe52c80 /compile_lib.sh
parentef5eb18cbbbd9cd5d0ab2b7bf73edcd8d4ea0bce (diff)
Fixed unintentional printing of "-n"
Diffstat (limited to 'compile_lib.sh')
-rwxr-xr-xcompile_lib.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/compile_lib.sh b/compile_lib.sh
index 38827da..c8d573e 100755
--- a/compile_lib.sh
+++ b/compile_lib.sh
@@ -16,11 +16,11 @@ if [ "$FLUSH" = true ] ; then
done
fi
-echo -n "Compiling lib/core.nom ..."
+printf "Compiling lib/core.nom ..."
./nomsu.moon -c lib/core.nom
echo "done."
for file in $(cat lib/core.nom | lua -e "for filename in io.read('*a'):gmatch('use \"([^\"]*)\"') do print(filename) end") ; do
- echo -n "Compiling $file ..."
+ printf "Compiling $file ..."
./nomsu.moon -c $file
echo "done."
done