Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not print CHE CLI config message if config is skipped #8066

Merged
merged 1 commit into from
Dec 27, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dockerfiles/base/scripts/base/commands/cmd_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ cmd_config() {

fi

info "config" "Generating $CHE_MINI_PRODUCT_NAME configuration..."

# Run the docker configurator
if ! skip_config; then
generate_configuration_with_puppet
Expand Down Expand Up @@ -121,6 +119,8 @@ cmd_config() {

# Runs puppet image to generate che configuration
generate_configuration_with_puppet() {
info "config" "Generating $CHE_MINI_PRODUCT_NAME configuration..."

if is_docker_for_windows; then
CHE_ENV_FILE=$(convert_posix_to_windows "${CHE_HOST_INSTANCE}/config/$CHE_MINI_PRODUCT_NAME.env")
else
Expand Down