g | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 22487a3d991b899e541c3abe6f718a57f3384be4
Author: Christian Lohmaier <[email protected]>
AuthorDate: Wed Dec 11 15:35:32 2024 +0100
Commit: Adolfo Jayme Barrientos <[email protected]>
CommitDate: Thu Dec 12 06:07:24 2024 +0100
g: macOS' ln doesn't know --symbolic, only -s
Change-Id: Idf0b276563a2552db7c6a9f2cca14b55acabb753
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178316
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <[email protected]>
(cherry picked from commit 13516716fa294eda2d50d2267823500feac4420a)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178328
Reviewed-by: Adolfo Jayme Barrientos <[email protected]>
diff --git a/g b/g
index cf9b8d59be19..6363ce5666eb 100755
--- a/g
+++ b/g
@@ -107,7 +107,7 @@ refresh_all_hooks()
# of the other modes described above will do plain copies.
# So in case of git-bash use hardlinks since those work just fine,
everywhere else use symlinks
if [ $gitbash -ne 1 ]; then
- lnarg="--symbolic"
+ lnarg="-s"
fi
# There's no ".git" e.g. in a secondary worktree
if [ -d ".git" ]; then