Skip to content

Commit

Permalink
update find cmd in symlink script
Browse files Browse the repository at this point in the history
  • Loading branch information
vastbinderj committed Jul 15, 2015
1 parent 4694c6e commit 8f4e7ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotfiles/symlink-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ print_success() {


# finds all .dotfiles in this folder
declare -a FILES_TO_SYMLINK=$(find . -type f -maxdepth 1 -name ".*" -not -name .DS_Store -not -name .git -not -name .osx | sed -e 's|//|/|' | sed -e 's|./.|.|')
declare -a FILES_TO_SYMLINK=$(find . -maxdepth 1 -type f -name ".*" -not -name .DS_Store -not -name .git -not -name .osx | sed -e 's|//|/|' | sed -e 's|./.|.|')
# add in bin dir
FILES_TO_SYMLINK="$FILES_TO_SYMLINK bin" # add in vim and the binaries

Expand Down

0 comments on commit 8f4e7ab

Please sign in to comment.