Skip to content

Commit fecb404

Browse files
authored
Merge pull request #26 from laminas/1.6.x-merge-up-into-1.7.x_60701f5eca32b7.88159866
Merge release 1.6.1 into 1.7.x
2 parents a968871 + 1534dff commit fecb404

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,13 @@ echo "Received job: ${JOB}"
112112

113113
COMMAND=$(echo "${JOB}" | jq -r '.command')
114114

115-
if [[ "${$COMMAND}" == ""];then
115+
if [[ "${COMMAND}" == "" ]];then
116116
echo "Command is empty; nothing to run"
117117
exit 0
118118
fi
119119

120120
PHP=$(echo "${JOB}" | jq -r '.php')
121-
if [[ "${COMMAND}" == "" ]];then
121+
if [[ "${PHP}" == "" ]];then
122122
echo "Missing PHP version in job"
123123
help
124124
exit 1

0 commit comments

Comments
 (0)