commit eb290f3b0459f413bb94e4661b6b0f98ca86e819
parent 4fde76049ea383f73ff84f1331dba20180ad80e3
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 17 Jul 2020 18:08:01 +0200
ignore symlink failure
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bootstrap b/bootstrap
@@ -27,7 +27,7 @@ existence()
if existence uncrustify; then
echo "Installing uncrustify hook and configuration"
# Install uncrustify format symlink (if possible)
- ln -s contrib/uncrustify.cfg uncrustify.cfg 2> /dev/null
+ ln -s contrib/uncrustify.cfg uncrustify.cfg 2> /dev/null || true
# Install pre-commit hook (if possible)
ln -s ../../contrib/uncrustify_precommit .git/hooks/pre-commit 2> /dev/null
else