From c4e83a259da2268d1d6ccf56e4b6ff3794f4dc0e Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 29 Jun 2023 09:02:35 -0300 Subject: 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. --- bin/ootb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/ootb') diff --git a/bin/ootb b/bin/ootb index ad431d7..959a210 100755 --- a/bin/ootb +++ b/bin/ootb @@ -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 -- cgit v1.2.3