ditch the whitelist and link all config files

This commit is contained in:
Sami Samhuri 2012-03-24 09:51:26 -07:00
parent dd3e291d39
commit 3a76a8ab26

View file

@ -20,8 +20,10 @@ link_config() {
fi
}
CONFIG_FILES="ackrc emacs emacs.d gitconfig screenrc vimrc zshenv gdbinit"
cd "$CONFIG_PATH"
for file in $CONFIG_FILES; do
for file in *; do
if [ "$file" != "init.sh" ]; then
link_config "$file"
fi
done