Skip to content

Commit c6241c1

Browse files
authored
fix: conditional missing brackets
1 parent 9d85426 commit c6241c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/stackhpc-container-image-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ jobs:
253253
if docker push $image; then
254254
echo "Pushed $image"
255255
break
256-
elif $i == 5; then
256+
elif [ $i -eq 5 ] ; then
257257
echo "Failed to push $image"
258258
echo $image >> image-build-logs/push-failed-images.txt
259259
else

0 commit comments

Comments
 (0)