This commit is contained in:
David Daly
2024-01-31 09:41:40 +00:00
committed by GitHub
parent 10ef4a54d9
commit 879b696ad3
+2 -2
View File
@@ -37,8 +37,8 @@ jobs:
# split the RESULT into an array
RESULT=("$RESULT")
STATUS="$(echo ${RESULT[0]} | sed -e 's/^"//' -e 's/"$//')"
CONCLUSION="$(echo ${RESULT[1]} | sed -e 's/^"//' -e 's/"$//')"
STATUS=$(echo "${RESULT[0]}" | sed -e 's/^"//' -e 's/"$//')
CONCLUSION=$(echo "${RESULT[1]}" | sed -e 's/^"//' -e 's/"$//')
if [ -z "$STATUS" ]; then
echo "No workflow found yet"
else