From: jhh Date: Wed, 5 Aug 2020 18:26:25 +0000 (-0500) Subject: change shebang bash line X-Git-Tag: 2.4.1~21 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=a926cdc113b5fad19a34dbf45e66bd7cbb5ed6e0;p=policy%2Fapex-pdp.git change shebang bash line The shebang line does not take flags causing container intialization problems. Issue-ID: POLICY-2615 Signed-off-by: jhh Change-Id: Iac66922873ded0684232c23e3fa2ac6747a959ae --- 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=======================================================