Commit 3c5772717fd6f6743fbd7c1fa05c03604c3d8a87

Authored by Shrikant Sharat
1 parent 5b25158885

OSX doesn't have a -T option to ln.

The -T is not really required here as we're checking and deleting
the target if it already exists.

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -102,7 +102,7 @@ bundle-install () {
102 102 echo Installing $name
103 103 local bundle_dest="$ANTIGEN_BUNDLE_DIR/$name"
104 104 test -e "$bundle_dest" && rm -rf "$bundle_dest"
105   - ln -sT "$clone_dir/$loc" "$bundle_dest"
  105 + ln -s "$clone_dir/$loc" "$bundle_dest"
106 106 else
107 107 mkdir -p "$ANTIGEN_BUNDLE_DIR/$name"
108 108 cp "$clone_dir/$loc" "$ANTIGEN_BUNDLE_DIR/$name"