From a814263ec185e243a96710ae9c0db62432eb9fbe Mon Sep 17 00:00:00 2001 From: knj Date: Fri, 16 Dec 2022 09:20:39 +0100 Subject: [PATCH] fix pages job by adding missing semicolons in if clause --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aaa355eb35..53cdd2871b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1084,7 +1084,7 @@ complexity-StereoDmxEVS-stereo-in-mono-out: # helper for pages job .unzip-or-cat: &unzip-or-cat - unzip -t $ARTIFACTS >> /dev/null - - if [ $? -eq 0 ]; then unzip -o $ARTIFACTS rm $ARTIFACTS; else cat $ARTIFACTS rm $ARTIFACTS; fi + - if [ $? -eq 0 ]; then unzip -o $ARTIFACTS; rm $ARTIFACTS; else cat $ARTIFACTS; rm $ARTIFACTS; fi # job that sets up gitlab pages website # is run on a separate schedule and collects artifacts from other jobs (currently -- GitLab