summaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2017-01-01 02:26:18 +0100
committerTharre <tharre3@gmail.com>2017-01-01 02:26:18 +0100
commit97449b4b6702f2a17fe73ec31e5149edb784cc49 (patch)
treea9d489b4f97ff612612031d0e974f778a5af56e5 /install.sh
parentdb44f7f327c9a0cbf31c2571fa5ad0600a1c8bb5 (diff)
downloaddotfiles-97449b4b6702f2a17fe73ec31e5149edb784cc49.tar.gz
dotfiles-97449b4b6702f2a17fe73ec31e5149edb784cc49.tar.xz
dotfiles-97449b4b6702f2a17fe73ec31e5149edb784cc49.zip
Remove useless -T ln flag from install.sh
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 203a7a4..4d1eb5b 100755
--- a/install.sh
+++ b/install.sh
@@ -17,7 +17,7 @@ else
if [ ! -e "$target" ] || [ -L "$target" ]; then
# target either doesn't exist or is a symbolic link and can thus be
# safely replaced
- ln -sfT "$origin" "$target"
+ ln -sf "$origin" "$target"
elif [ -d "$target" ]; then
# target is not a symbolic link, but a directory, thus we link
# everything into that directory instead