bug fix for init.sh
This commit is contained in:
parent
c653c741bf
commit
deca876875
1 changed files with 2 additions and 2 deletions
4
init.sh
4
init.sh
|
|
@ -28,9 +28,9 @@ link_config() {
|
||||||
cd "$CONFIG_PATH"
|
cd "$CONFIG_PATH"
|
||||||
|
|
||||||
for FILE in *; do
|
for FILE in *; do
|
||||||
if [ "$FILE" != "init.sh" ]; then
|
if [ "$FILE" != "init.sh" ] && [ "$FILE" != "Gemfile" ] && [ "$FILE" != "Gemfile.lock" ] && [ "$FILE" != "zsh" ]; then
|
||||||
link_config "${CONFIG_PATH}/$FILE"
|
link_config "${CONFIG_PATH}/$FILE"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
link_config "zsh/zshrc"
|
link_config "${CONFIG_PATH}/zsh/zshrc"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue