aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-12-11 10:03:57 +1300
committerTom Ryder <tom@sanctum.geek.nz>2013-12-11 10:03:57 +1300
commit8d96092ee987344d8d7a72d5505c916d8350de19 (patch)
treeac8460e58f7e361503fbffe583e531e463bfbd4c /install
parentI can be a finicky mofo (diff)
downloaddotfiles-8d96092ee987344d8d7a72d5505c916d8350de19.tar.gz
dotfiles-8d96092ee987344d8d7a72d5505c916d8350de19.zip
Fix trailing whitespace
Diffstat (limited to 'install')
-rwxr-xr-xinstall4
1 files changed, 2 insertions, 2 deletions
diff --git a/install b/install
index 693ba6c9..7a8367bb 100755
--- a/install
+++ b/install
@@ -24,7 +24,7 @@
# on systems other than GNU/Linux or BSD.
#
# Run this at your own risk!
-#
+#
self=install
# Replace existing file with link if user confirms
@@ -33,7 +33,7 @@ lns() {
if [[ -e $link ]]; then
read -p "$link already exists; remove? [y/N] " confirm
case $confirm in
- y*|Y*)
+ y*|Y*)
rm -r -- "$link"
ln -s -- "$file" "$link"
return