summaryrefslogtreecommitdiffstats
path: root/jjb/armband
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2016-09-05 18:34:32 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2016-09-05 18:36:30 +0200
commitcbe3739fbbbf50ec74dcde145e86087698d5e2a9 (patch)
treee5f084987fbf0cb7581831488e9866e2564135a5 /jjb/armband
parent581921cea95147f3af8abab7df14bb9375fde0fc (diff)
armband: Fix file handler in lab-config test -e
Previous change adding lab-config/.../local_env support introduced an issue, in the form of `test -e file:///path/to/local_env`, which is not supported. Change-Id: I1566b41765329f18523cfc506c9112b6694a8317 Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'jjb/armband')
-rwxr-xr-xjjb/armband/armband-deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/armband/armband-deploy.sh b/jjb/armband/armband-deploy.sh
index d7626509c..fb4c1ead5 100755
--- a/jjb/armband/armband-deploy.sh
+++ b/jjb/armband/armband-deploy.sh
@@ -52,7 +52,7 @@ if [[ $LAB_CONFIG_URL =~ ^(git|ssh):// ]]; then
LAB_CONFIG_URL=file://${WORKSPACE}/lab-config
# Source local_env if present, which contains POD-specific config
- local_env="$LAB_CONFIG_URL/labs/$LAB_NAME/$POD_NAME/fuel/config/local_env"
+ local_env="${WORKSPACE}/lab-config/labs/$LAB_NAME/$POD_NAME/fuel/config/local_env"
if [ -e $local_env ]; then
echo "-- Sourcing local environment file"
source $local_env