Skip to content

Commit

Permalink
build_container.sh: add missing continuation char
Browse files Browse the repository at this point in the history
When the ENGINE_CMD variable was introduced, the continuation character
was missed in two places. Therefore that variable is passed neither in
vnc-test.sh, nor in smoke.sh
So fixing the issue.

Signed-off-by: Alexander Fomichev <[email protected]>
  • Loading branch information
alfonder authored and moto-timo committed Dec 12, 2023
1 parent 487f50d commit 009d1eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ ${ENGINE_CMD} build \
cd -

# base tests
ENGINE_CMD=${ENGINE_CMD}
ENGINE_CMD=${ENGINE_CMD} \
./tests/container/vnc-test.sh $REPO:$DISTRO_TO_BUILD-base
# builder tests
ENGINE_CMD=${ENGINE_CMD}
ENGINE_CMD=${ENGINE_CMD} \
./tests/container/smoke.sh $REPO:$DISTRO_TO_BUILD-builder

rm $workdir -rf

0 comments on commit 009d1eb

Please sign in to comment.