Skip to content
Snippets Groups Projects
Commit 9c44e5f1 authored by Eric Müller's avatar Eric Müller :mountain_bicyclist:
Browse files

fix: skip build_image if stage not specified

Change-Id: I0c9696bb83e7c13fd86cfa7d7c818c23853079d2
parent 4523c7a9
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,11 @@
set -euo pipefail
shopt -s inherit_errexit 2>/dev/null || true
if [ -z "${YASHCHIKI_ENABLE_STAGE_IMAGE:-}" ]; then
echo "Skipping stage build-base-sandbox."
exit 0
fi
TARGET_FOLDER="${YASHCHIKI_SANDBOXES}/${CONTAINER_STYLE}"
if test -f "${YASHCHIKI_IMAGE_NAME}"; then
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment