aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-06-28 22:46:22 -0300
committerEuAndreh <eu@euandre.org>2023-06-28 22:46:22 -0300
commitedbf0c2ce376ce6672fbc94d861fe26081c46418 (patch)
treec19f36fb6c767a2acbe61d9b494c860405022498 /bin
parentetc/sh/rc: Do not include $NPROC in $MAKEFLAGS (diff)
downloaddotfiles-edbf0c2ce376ce6672fbc94d861fe26081c46418.tar.gz
dotfiles-edbf0c2ce376ce6672fbc94d861fe26081c46418.tar.xz
bin/ootb: Use hardlinks over symlinks
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ootb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ootb b/bin/ootb
index 959a210..ad431d7 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 -rfs "$PWD"/"$f" "$BUILD_DIRECTORY"/"$f"
+ ln -f "$PWD"/"$f" "$BUILD_DIRECTORY"/"$f"
done