Skip to content

Commit

Permalink
Removed wrongly added ASSEMBLE_EXPLODED_IMAGE=true to container builds
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed May 24, 2024
1 parent 3482dfa commit d8a44d6
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions sbin/common/config_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -274,16 +274,13 @@ function parseConfigurationArguments() {
BUILD_CONFIG[TARGET_DIR]="$1"; shift;;

"-D" )
if which podman > /dev/null ; then BUILD_CONFIG[USE_DOCKER]="podman" ; else BUILD_CONFIG[USE_DOCKER]="docker" ; fi;
BUILD_CONFIG[ASSEMBLE_EXPLODED_IMAGE]=true;;
if which podman > /dev/null ; then BUILD_CONFIG[USE_DOCKER]="podman" ; else BUILD_CONFIG[USE_DOCKER]="docker" ; fi;;

"--docker" )
BUILD_CONFIG[USE_DOCKER]="docker";
BUILD_CONFIG[ASSEMBLE_EXPLODED_IMAGE]=true;;
BUILD_CONFIG[USE_DOCKER]="docker";;

"--podman" )
BUILD_CONFIG[USE_DOCKER]="podman";
BUILD_CONFIG[ASSEMBLE_EXPLODED_IMAGE]=true;;
BUILD_CONFIG[USE_DOCKER]="podman";;

"--debug-docker" )
BUILD_CONFIG[DEBUG_DOCKER]="true";;
Expand Down

0 comments on commit d8a44d6

Please sign in to comment.