fix: update binary check

This commit is contained in:
Jose Diaz-Gonzalez
2025-11-28 07:49:18 -05:00
parent f46c698e54
commit 82fb41eb00

View File

@@ -283,8 +283,9 @@ deploy-test-static:
cd tests && ./test_deploy ./apps/static $(DOKKU_DOMAIN)
test-ci-binaries:
docker exec dokku bash -c "whereis logrotate" || echo "logrotate not found"
docker exec dokku bash -c "whereis systemd" && echo "systemd found"
docker exec dokku bash -c "whereis logrotate" || { echo "logrotate not found" ; exit 1}
docker exec dokku bash -c "whereis systemd" && {echo "systemd found" ; exit 1}
docker exec dokku bash -c "whereis rsyslog" && { echo "systemd found" ; exit 1}
deploy-tests:
@echo running deploy tests...