From: Jorge Hernandez Date: Tue, 17 Apr 2018 02:04:29 +0000 (-0500) Subject: strip timestamped versions in feature installs X-Git-Tag: v1.2.1~16 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=e590ef1978e3925a047d31f29b9e0876e3971426;p=policy%2Fdrools-pdp.git strip timestamped versions in feature installs This is to satisfy CSIT tests that contains a mix of SNAPSHOT and timestamped versions while running tests Change-Id: I1fe426dcca9250d0fe2c9c5264f1acb1ffbde57b Issue-ID: POLICY-745 Signed-off-by: Jorge Hernandez --- diff --git a/packages/docker/src/main/docker/docker-install.sh b/packages/docker/src/main/docker/docker-install.sh index 5ec25823..4c647f11 100644 --- a/packages/docker/src/main/docker/docker-install.sh +++ b/packages/docker/src/main/docker/docker-install.sh @@ -839,7 +839,7 @@ function installFeatures SOURCE_DIR=$PWD for feature in feature-*.zip ; do name="${feature#feature-}" - name="${name%-[0-9]*\.zip}" + name="${name%%-[0-9]*\.zip}" mkdir -p "${FEATURES_HOME}/${name}" > /dev/null 2>&1 (cd "${FEATURES_HOME}/${name}"; jar xf ${SOURCE_DIR}/${feature}) featureConf="feature-${name}.conf" diff --git a/policy-management/src/main/server-gen/bin/features b/policy-management/src/main/server-gen/bin/features index b2e9bd5b..9f139f8b 100644 --- a/policy-management/src/main/server-gen/bin/features +++ b/policy-management/src/main/server-gen/bin/features @@ -921,7 +921,7 @@ function installFeatures # the ZIP file is specified -- find the name name="${feature##*/}" name="${name#feature-}" - name="${name%-[0-9]*\.zip}" + name="${name%%-[0-9]*\.zip}" # if the ZIP file has a directory name component, # set 'dir' accordingly