diff --git a/includes/verify.yml b/includes/verify.yml
index 94c8eab5911a93c974335d2da76b309dcb88885f..4ec8c1d05fb24623c55ddb38dbbdcf6190138e95 100644
--- a/includes/verify.yml
+++ b/includes/verify.yml
@@ -2,7 +2,7 @@
   buildIdMatches () {
     result=$(curl -sI $CI_ENVIRONMENT_URL | awk -v FS=": " '/^x-build-id/{print $2}')
     # if there is no result, its not using our ingress
-    if [ -z "$result" ]
+    if [ -z "$result" ]; then
       return 0
     fi
     if [[ "${result//[$' \t\n\r']/}" == "${BUILD_ID//[$' \t\n\r']/}" ]]; then return 0; fi