aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-08-13 18:38:50 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-08-13 18:38:50 +1200
commit6da2b28d20da01608cc4fb88b361d0ec7c589b13 (patch)
tree605f00bf8c2c9e9e3c0da3aa2c045705a5b18ec5 /install
parentUse consistent style for while block (diff)
downloaddotfiles-6da2b28d20da01608cc4fb88b361d0ec7c589b13.tar.gz
dotfiles-6da2b28d20da01608cc4fb88b361d0ec7c589b13.zip
Use printf in preference to echo
Diffstat (limited to 'install')
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index 2783f926..7b93905e 100755
--- a/install
+++ b/install
@@ -3,7 +3,7 @@
# Define dotfiles directory and check it exists
dotfiles="$HOME/.dotfiles"
if [[ ! -n "$dotfiles" ]]; then
- echo "Could not find $dotfiles!" >&2
+ printf "Could not find $dotfiles!\n" >&2
exit 1
fi