Browse Source

fix: hidden error exit from export.

raw-remaining-args
Valentin Lab 8 years ago
parent
commit
538599e5b8
  1. 3
      bin/compose

3
bin/compose

@ -1796,7 +1796,8 @@ done
export CHARM_STORE=${CHARM_STORE:-/srv/charm-store}
export DOCKER_DATASTORE=${DOCKER_DATASTORE:-/srv/docker-datastore}
export COMPOSE_YML_FILE=$(get_compose_yml_location) || exit 1
COMPOSE_YML_FILE=$(get_compose_yml_location) || exit 1
export COMPOSE_YML_FILE
debug "Found 'compose.yml' file in '$COMPOSE_YML_FILE'."
output=$(shyaml get-value < "$COMPOSE_YML_FILE" 2>&1)

Loading…
Cancel
Save