g | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 13516716fa294eda2d50d2267823500feac4420a
Author: Christian Lohmaier <[email protected]>
AuthorDate: Wed Dec 11 15:35:32 2024 +0100
Commit: Christian Lohmaier <[email protected]>
CommitDate: Wed Dec 11 17:52:26 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]>
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