removed exit from anti-root check in makefile
Some checks failed
Codacy Scan / Codacy Security Scan (push) Failing after 2m5s
Build WHY2-chat / test-why2 (./out/why2-chat-client, configure.sh, ubuntu-latest, ./out/why2-chat-server) (push) Failing after 1m33s
Test WHY2-core / test-why2 (why2, configure.sh, ubuntu-latest, ./out/why2-core-test, valgrind --leak-check=full --show-leak-kinds=reachable --track-origins=yes -s) (push) Failing after 1m8s
Test WHY2-logger / test-why2 (why2-logger, configure.sh, ubuntu-latest, ./out/why2-logger-test, valgrind --leak-check=full --show-leak-kinds=reachable --track-origins=yes -s) (push) Failing after 1m4s
Test Project / test-project (configure.sh, ubuntu-latest, test) (push) Failing after 1m6s

This commit is contained in:
Václav Šmejkal 2025-01-08 17:11:43 +01:00
parent c72eb44ab0
commit a52031ad52
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -81,7 +81,6 @@ check_root:
ifneq ($(BYPASS_CHECK),true)
@if [ "$(shell id -u)" = 0 ]; then\
echo "Do not run install rules as root.";\
exit 1;\
fi
endif