update install.sh The install script copies the files to the home directory directly
Prithu Goswami prithugoswami524@gmail.com
Sat, 24 Mar 2018 13:08:03 +0530
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
install.sh
→
install.sh
@@ -24,7 +24,7 @@ for file in $files; do
echo "Moving any existing dotfiles from ~ to $olddir" mv ~/$file ~/dotfiles_old/ echo "Creating symlink to $file in home directory." - ln -s $dir/$file ~/$file + ln -s $dir/$file ~ done source ~/.bashrc