diff options
author | EuAndreh <eu@euandre.org> | 2023-06-29 09:02:35 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-06-29 09:02:35 -0300 |
commit | c4e83a259da2268d1d6ccf56e4b6ff3794f4dc0e (patch) | |
tree | 5b259455b0436132ed4d7318aee3ee00920f54de /bin/ootb | |
parent | bin/ootb: Use hardlinks over symlinks (diff) | |
download | dotfiles-c4e83a259da2268d1d6ccf56e4b6ff3794f4dc0e.tar.gz dotfiles-c4e83a259da2268d1d6ccf56e4b6ff3794f4dc0e.tar.xz |
Revert "bin/ootb: Use hardlinks over symlinks"
This reverts commit edbf0c2ce376ce6672fbc94d861fe26081c46418.
After adding the "build/" directory to the top-level .gitignore file, it
stopped complaining about the symlinks.
Diffstat (limited to 'bin/ootb')
-rwxr-xr-x | bin/ootb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,5 +99,5 @@ mkdir -p "$BUILD_DIRECTORY" while read -r f; do mkdir -p "$BUILD_DIRECTORY"/"$(dirname "$f")" - ln -f "$PWD"/"$f" "$BUILD_DIRECTORY"/"$f" + ln -rfs "$PWD"/"$f" "$BUILD_DIRECTORY"/"$f" done |