mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
fix: add missing semicolon
This commit is contained in:
committed by
GitHub
parent
3bc58d46ad
commit
913fd79f59
6
tests.mk
6
tests.mk
@@ -283,9 +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" ; 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}
|
||||
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...
|
||||
|
||||
Reference in New Issue
Block a user