Skip to content

Commit 783b999

Browse files
committed
update
1 parent f6f93e8 commit 783b999

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

setup.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
#!/bin/sh
22
set -e
33

4-
# add aliases for dotfiles
5-
for file in $(find "$PWD" -name ".*"); do
4+
# add aliases for dotfiles (excluding .git)
5+
for file in $(find "$PWD" -name ".*" -not -name ".git"); do
66
f=$(basename "$file")
77
ln -sfn "$file" "$HOME/$f"
88
done
9-
ln -sfn "$PWD/gitignore" "$HOME/.gitignore"
109

1110
apt-get update
1211

0 commit comments

Comments
 (0)