Skip to content

Commit 795e82b

Browse files
committed
Fix shellcheck error
1 parent d8a6c32 commit 795e82b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ fi
156156
###
157157
# Determining the value for DOCKER_FROM
158158
###
159-
if [ -z "$DOCKER_FROM"]; then
159+
if [ -z "$DOCKER_FROM" ]; then
160160
DOCKER_FROM="python:3.7-alpine"
161161
fi
162162

@@ -257,7 +257,7 @@ for DOCKER_TARGET in "${DOCKER_TARGETS[@]}"; do
257257
# Asuming non Github builds should always proceed
258258
SHOULD_BUILD="true"
259259
BUILD_REASON="${BUILD_REASON} interactive"
260-
elsif [ "$DOCKER_REGISTRY" = "docker.io" ]; then
260+
elif [ "$DOCKER_REGISTRY" = "docker.io" ]; then
261261
source ./build-functions/get-public-image-config.sh
262262
IFS=':' read -ra DOCKER_FROM_SPLIT <<< "${DOCKER_FROM}"
263263
if ! [[ ${DOCKER_FROM_SPLIT[0]} =~ .*/.* ]]; then

0 commit comments

Comments
 (0)