Skip to content

Commit

Permalink
Fix classroom-demo build script in create_images.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
cruizba committed Jun 23, 2023
1 parent ec2fcff commit 6ba84ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docker/create_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@ pushd openvidu-getaroom/docker || exit 1
popd || exit 1

# Build openvidu-classroom-demo
if [ -d "../classroom-demo/docker" ]; then
pushd ../classroom-demo/docker || exit 1
if [ -d "../classroom-demo" ]; then
pushd ../classroom-demo || exit 1
./ci-scripts/build.sh --build-front
./ci-scripts/build.sh --build-back
popd || exit 1
pushd ../classroom-demo/docker || exit 1
./create_image.sh "$1"
popd || exit 1
else
Expand Down

0 comments on commit 6ba84ab

Please sign in to comment.