Skip to content

Commit 71a131d

Browse files
committed
Fix unbound error for DOCKERFILE_FULL
Signed-off-by: savitaashture <[email protected]>
1 parent 13b8f4e commit 71a131d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/buildah-common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ declare -rx RESULTS_IMAGE_URL_PATH="${RESULTS_IMAGE_URL_PATH:-}"
2626

2727
# Exposing the full path to the container file, which by default should be relative to the primary
2828
# workspace, with a fallback to be relative to the context directory.
29-
if [[ -z "$DOCKERFILE_FULL" ]]; then
29+
if [[ -z "${DOCKERFILE_FULL:-}" ]]; then
3030
if [[ -r "${WORKSPACES_SOURCE_PATH}/${PARAMS_DOCKERFILE}" ]]; then
3131
declare -x DOCKERFILE_FULL="${WORKSPACES_SOURCE_PATH}/${PARAMS_DOCKERFILE}"
3232
else

0 commit comments

Comments
 (0)