Fix script condition

This commit is contained in:
Florian Brinker 2021-05-10 22:42:30 +02:00
parent 7acbe3d55e
commit 62c33bbc73
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ echo "Last commit was $commitdate and is $commitdays days ago."
if [ $commitdays -lt 2 ]; then
echo "Found recent commits in the repository."
echo "Continuing with pipeline..."
elif [ !docker_tag_exists ]; then
elif ! docker_tag_exists; then
echo "Missing an nightly build."
echo "Continuing with pipeline..."
else