aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-10-02 11:07:10 +1300
committerTom Ryder <tom@sanctum.geek.nz>2015-10-02 11:07:10 +1300
commitc4fe8febaf8ddbc8fdb40e922b52405ab0a8791e (patch)
tree598182dff7511cacdb180b4c48d53e82e9287268
parentWhoops, forgot my option terminators (diff)
downloaddotfiles-c4fe8febaf8ddbc8fdb40e922b52405ab0a8791e.tar.gz
dotfiles-c4fe8febaf8ddbc8fdb40e922b52405ab0a8791e.zip
Use printf not echo
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 3b6b0f84..c2d4b5fd 100644
--- a/Makefile
+++ b/Makefile
@@ -234,7 +234,7 @@ test-sh :
exit 1 ; \
fi \
done
- @echo "All sh(1) scripts parsed successfully."
+ @printf 'All sh(1) scripts parsed successfully.\n'
test-bash :
@for bash in bash/* bash/bashrc.d/* bash/bash_profile.d/* ; do \
@@ -242,7 +242,7 @@ test-bash :
exit 1 ; \
fi \
done
- @echo "All bash(1) scripts parsed successfully."
+ @printf 'All bash(1) scripts parsed successfully.\n'
test-bin :
@for bin in bin/* ; do \
@@ -252,11 +252,11 @@ test-bin :
sh -n "$$bin" || exit 1 ; \
fi ; \
done
- @echo "All shell scripts in bin parsed successfully."
+ @printf 'All shell scripts in bin parsed successfully.\n'
test-urxvt:
@for perl in urxvt/ext/* ; do \
perl -c "$$perl" >/dev/null || exit 1 ; \
done
- @echo "All Perl scripts in urxvt/ext parsed successfully."
+ @printf 'All Perl scripts in urxvt/ext parsed successfully.\n'