diff options
author | Bin Yang <bin.yang@windriver.com> | 2019-05-14 04:21:30 +0000 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2019-05-14 04:21:30 +0000 |
commit | d69ada1539f9d4bb716a723c1dad0c8c0b1c087d (patch) | |
tree | d821425c8ae1f77814b58a47293b0529b3771b40 | |
parent | 06dbbc0751e9918b2c178b1144f4d52aa05a46e8 (diff) |
Fix shell issue
Change-Id: I382f7c63835f8ad54cb82558e818e7e441ff968d
Issue-ID: MULTICLOUD-627
Signed-off-by: Bin Yang <bin.yang@windriver.com>
-rwxr-xr-x | azure/docker/docker-entrypoint.sh | 2 | ||||
-rwxr-xr-x | azure/docker/instance-config.sh | 2 | ||||
-rwxr-xr-x | azure/docker/instance-init.sh | 2 | ||||
-rwxr-xr-x | azure/docker/instance-run.sh | 2 | ||||
-rw-r--r-- | azure/initialize.sh | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/azure/docker/docker-entrypoint.sh b/azure/docker/docker-entrypoint.sh index 26219d2..fcf9976 100755 --- a/azure/docker/docker-entrypoint.sh +++ b/azure/docker/docker-entrypoint.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Copyright (c) 2018 Amdocs # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/azure/docker/instance-config.sh b/azure/docker/instance-config.sh index f3b98b0..67793af 100755 --- a/azure/docker/instance-config.sh +++ b/azure/docker/instance-config.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Copyright (c) 2018 Amdocs # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/azure/docker/instance-init.sh b/azure/docker/instance-init.sh index 304bdd5..9f468ac 100755 --- a/azure/docker/instance-init.sh +++ b/azure/docker/instance-init.sh @@ -1,4 +1,4 @@ -#!/bin/bash -v +#!/bin/sh -v # Copyright (c) 2018 Amdocs # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/azure/docker/instance-run.sh b/azure/docker/instance-run.sh index 10fd81e..8d54e25 100755 --- a/azure/docker/instance-run.sh +++ b/azure/docker/instance-run.sh @@ -1,4 +1,4 @@ -#!/bin/bash -v +#!/bin/sh -v # Copyright (c) 2018 Amdocs # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/azure/initialize.sh b/azure/initialize.sh index 6128a8b..c7e62f3 100644 --- a/azure/initialize.sh +++ b/azure/initialize.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Copyright (c) 2018 Amdocs # # Licensed under the Apache License, Version 2.0 (the "License"); |