Skip to content

Commit

Permalink
Merge pull request holman#186 from wackywendell/symlinkfix
Browse files Browse the repository at this point in the history
Added '/' to find command to handle symlinked .dotfiles folder
  • Loading branch information
holman committed Jan 31, 2015
2 parents 290c26c + 44a0354 commit bca7d43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/bootstrap
Expand Up @@ -130,7 +130,7 @@ install_dotfiles () {

local overwrite_all=false backup_all=false skip_all=false

for src in $(find "$DOTFILES_ROOT" -maxdepth 2 -name '*.symlink')
for src in $(find "$DOTFILES_ROOT/" -maxdepth 2 -name '*.symlink')
do
dst="$HOME/.$(basename "${src%.*}")"
link_file "$src" "$dst"
Expand Down

0 comments on commit bca7d43

Please sign in to comment.