diff options
author | jhh <jorge.hernandez-herrero@att.com> | 2020-08-05 13:26:25 -0500 |
---|---|---|
committer | jhh <jorge.hernandez-herrero@att.com> | 2020-08-05 13:26:25 -0500 |
commit | a926cdc113b5fad19a34dbf45e66bd7cbb5ed6e0 (patch) | |
tree | fa2c72e89ea977041381ccda5dbb611dbb64f92a /packages/apex-pdp-package-full/src/main/package/scripts | |
parent | 978e74174313276578344240ae7175e68cb66997 (diff) |
change shebang bash line
The shebang line does not take flags causing container
intialization problems.
Issue-ID: POLICY-2615
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Change-Id: Iac66922873ded0684232c23e3fa2ac6747a959ae
Diffstat (limited to 'packages/apex-pdp-package-full/src/main/package/scripts')
-rwxr-xr-x | packages/apex-pdp-package-full/src/main/package/scripts/apexApps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/apexApps.sh b/packages/apex-pdp-package-full/src/main/package/scripts/apexApps.sh index 93c254c04..17d9e2248 100755 --- a/packages/apex-pdp-package-full/src/main/package/scripts/apexApps.sh +++ b/packages/apex-pdp-package-full/src/main/package/scripts/apexApps.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash -x +#!/bin/bash -x #------------------------------------------------------------------------------- # ============LICENSE_START======================================================= |