diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-10-05 03:46:54 +0200 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-10-05 04:28:18 +0200 |
commit | 1b34a6d35d0e18896089d22cfdeb5419a2073a89 (patch) | |
tree | c920e81916d01fdb6b9e74c01f3983956ab7ea19 /ci/deploy.sh | |
parent | 08392c03d6bb184bc61dea46eec33d20f2b9c1d9 (diff) |
ci/deploy.sh: Drop local_env support
While at it, fix shellcheck warnings in deploy wrapper.
Change-Id: I2ddd272afe7ec16d6c594295a257eb98ee5bf5ce
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 38 |
1 files changed, 8 insertions, 30 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index a2f489ed..f35a6d19 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -1,41 +1,19 @@ #!/bin/bash -# -# (c) 2017 Enea Software AB -# +############################################################################## +# Copyright (c) 2017 Enea Software AB and others. # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 -# +############################################################################## set -e -SCRIPT_DIR=$(readlink -f $(dirname ${BASH_SOURCE[0]})) +SCRIPT_DIR=$(readlink -f "$(dirname "${BASH_SOURCE[0]}")") +ARMBAND_BASE=$(readlink -e "${SCRIPT_DIR}/..") +export ARMBAND_BASE -export ARMBAND_BASE=$(readlink -e ${SCRIPT_DIR}/..) - -cd ${WORKSPACE:-${ARMBAND_BASE}} +cd "${WORKSPACE:-${ARMBAND_BASE}}" make patches-import -# source local environment variables -if ! [ -z $LAB_CONFIG_URL ]; then - while getopts "b:B:dfFl:L:p:s:S:T:i:he" OPTION 2>/dev/null - do - case $OPTION in - l) TARGET_LAB=$OPTARG;; - p) TARGET_POD=$OPTARG;; - esac - done - local_env=${LAB_CONFIG_URL}/labs/${TARGET_LAB}/${TARGET_POD}/fuel/config/local_env - # try to fetch this file, but don't create it if it does not exist. - # We add "|| true" to ignore the curl error when the file does not exist - echo "curl -s -f -O $local_env || true" - curl -s -f -O $local_env || true - local_env=$(basename $local_env) - if [ -e $local_env ]; then - echo "-- Sourcing local environment file" - source $local_env - fi -fi - cd upstream/fuel/ci -./deploy.sh $@ +./deploy.sh "$@" |