diff options
| author | Thomas Schneider <qsx@qsx.re> | 2017-02-26 17:07:18 +0100 |
|---|---|---|
| committer | Thomas Schneider <qsx@qsx.re> | 2017-02-26 17:09:59 +0100 |
| commit | 3218d7181246e04fa05225c73c9bf14acffcb0e1 (patch) | |
| tree | 494e685e681ee34a7a2347eef5de96850d6c67ab /setup.zsh | |
| parent | b59c490f9486ab17b11eff6b126c57f42ab2ca22 (diff) | |
Rewrite setup script in Python
Signed-off-by: Thomas Schneider <qsx@qsx.re>
Diffstat (limited to 'setup.zsh')
| -rwxr-xr-x | setup.zsh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/setup.zsh b/setup.zsh deleted file mode 100755 index 233a942..0000000 --- a/setup.zsh +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env zsh - -[[ $PWD = ~/.dotfiles ]] || exit 1 - -if [[ $(uname -s) = FreeBSD ]]; then - if [[ -x /compat/linux/bin/ln ]]; then - LN=/compat/linux/bin/ln - else - echo "On FreeBSD and no GNU ln found, exiting" - exit 1 - fi -fi -LN=${LN:-ln} - -for i in dot.*; do - ${LN} -Ts .dotfiles/${i} ~/${i#dot} -done |
