diff options
author | Taka Cho <takamune.cho@att.com> | 2020-12-02 15:27:04 -0500 |
---|---|---|
committer | Taka Cho <takamune.cho@att.com> | 2020-12-07 17:57:49 -0500 |
commit | 395b49a08401890e7fa3af1fc869e4049a4bda36 (patch) | |
tree | 106510267f5a0477cbd0f3d6452ef604152a3d12 /packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh | |
parent | e267120c204303088f3c15e580a5e1a364e014f5 (diff) |
move all bash to ash shell scripts - apex
bash scripts convert to ash
Issue-ID: POLICY-2847
Change-Id: I4617223d4914820797f5ea121f75ee5f69a6ba40
Signed-off-by: Taka Cho <takamune.cho@att.com>
Diffstat (limited to 'packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh')
-rw-r--r-- | packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh b/packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh index 08c8d181f..d9ccaf81b 100644 --- a/packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh +++ b/packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh @@ -1,8 +1,9 @@ -#!/usr/bin/env bash +#!/usr/bin/env ash #------------------------------------------------------------------------------- # ============LICENSE_START======================================================= # Copyright (C) 2018 Ericsson. All rights reserved. +# Modifications Copyright (C) 2020 AT&T Intellectual Property. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -20,13 +21,11 @@ # ============LICENSE_END========================================================= #------------------------------------------------------------------------------- -if [ -z $APEX_HOME ] -then +if [ -z "${APEX_HOME}" ]; then APEX_HOME="/opt/app/policy/apex-pdp" fi -if [ ! -d $APEX_HOME ] -then +if [ ! -d "${APEX_HOME}" ]; then echo echo 'Apex directory "'$APEX_HOME'" not set or not a directory' echo "Please set environment for 'APEX_HOME'" |