Skip to content

Commit

Permalink
Added verbose message to installation type in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Nov 6, 2023
1 parent 3dc647a commit 8b5dfe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ aliases:
command: |
find . -name "docker-compose.yml" -print0 | xargs -0 -I {} sh -c "sed -i -e ''/###/d'' {} && sed -i -e ''s/##//'' {}"
# Alter build for an alternative build setup.
if [ "$CIVICTHEME_INSTALL_SIBLING" = "1" ]; then cp -f .docker/cli.sibling.dockerfile .docker/cli.dockerfile; fi
if [ "$CIVICTHEME_LIBRARY_INSTALL_SKIP" = "1" ]; then cp -f .docker/cli.onlytheme.dockerfile .docker/cli.dockerfile; fi
if [ "$CIVICTHEME_INSTALL_SIBLING" = "1" ]; then echo "Using cli.sibling.dockerfile"; cp -f .docker/cli.sibling.dockerfile .docker/cli.dockerfile; fi
if [ "$CIVICTHEME_LIBRARY_INSTALL_SKIP" = "1" ]; then echo "Using cli.onlytheme.dockerfile"; cp -f .docker/cli.onlytheme.dockerfile .docker/cli.dockerfile; fi
################################################################################
# JOBS
Expand Down

0 comments on commit 8b5dfe9

Please sign in to comment.