aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-08-26 15:35:58 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-08-26 15:35:58 +1200
commit4b4dfa40af811da5e1bc1f2b66495a8c1f3156e9 (patch)
treefddd22897d43297b851ab643f5b9ac1336fc8925 /install
parentUpdate Vim bundles (diff)
downloaddotfiles-4b4dfa40af811da5e1bc1f2b66495a8c1f3156e9.tar.gz
dotfiles-4b4dfa40af811da5e1bc1f2b66495a8c1f3156e9.zip
More sensible use of printf
Diffstat (limited to 'install')
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index 949c0498..dbd687c6 100755
--- a/install
+++ b/install
@@ -3,7 +3,7 @@
# Define dotfiles directory and check it exists
dotfiles=$HOME/.dotfiles
if [[ ! -d $dotfiles ]]; then
- printf %s "Could not find $dotfiles!\n" >&2
+ printf 'Could not find %s!\n' "$dotfiles" >&2
exit 1
fi