Skip to content

Commit 8ce3e86

Browse files
committed
qa: remove null check as php supposed to be a string
Signed-off-by: Maximilian Bösing <[email protected]>
1 parent f2a1e0f commit 8ce3e86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ if [[ "${COMMAND}" == "" ]];then
118118
fi
119119

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

0 commit comments

Comments
 (0)