From 395b49a08401890e7fa3af1fc869e4049a4bda36 Mon Sep 17 00:00:00 2001 From: Taka Cho Date: Wed, 2 Dec 2020 15:27:04 -0500 Subject: 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 --- .../src/main/package/scripts/apexCLIToscaEditor.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'packages/apex-pdp-package-full/src/main/package/scripts/apexCLIToscaEditor.sh') diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIToscaEditor.sh b/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIToscaEditor.sh index 3ed51ecff..cdf4eb3a7 100644 --- a/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIToscaEditor.sh +++ b/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIToscaEditor.sh @@ -1,8 +1,9 @@ -#!/usr/bin/env bash +#!/usr/bin/env ash #------------------------------------------------------------------------------- # ============LICENSE_START======================================================= # Copyright (C) 2019 Nordix Foundation. +# 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. @@ -27,13 +28,11 @@ ## @author Ajith Sreekumar ## @version v1.0.0 -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'" -- cgit 1.2.3-korg