aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/robot/demo-k8s.sh
diff options
context:
space:
mode:
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>2021-06-22 13:53:59 +0000
committerGerrit Code Review <gerrit@onap.org>2021-06-22 13:53:59 +0000
commitd95254082c9b7b5a060d8411a2f0bbdb3d90fb2e (patch)
tree1cab630b3b63088417e7ce7a96b9e3cc18cd1692 /kubernetes/robot/demo-k8s.sh
parent697b21bc9d3c97ea76012049f1dcf05bb1b32db8 (diff)
parent62178a49cc9e4088019d426636657d9f2980d242 (diff)
Merge "[COMMON] Fix a few bashisms"
Diffstat (limited to 'kubernetes/robot/demo-k8s.sh')
-rwxr-xr-xkubernetes/robot/demo-k8s.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/robot/demo-k8s.sh b/kubernetes/robot/demo-k8s.sh
index 099f80ccff..5e4e216c95 100755
--- a/kubernetes/robot/demo-k8s.sh
+++ b/kubernetes/robot/demo-k8s.sh
@@ -222,7 +222,7 @@ ETEHOME=/var/opt/ONAP
if [ $execscript ]; then
for script in $(ls -1 "$DIR/$SCRIPTDIR"); do
- [ -f "$DIR/$SCRIPTDIR/$script" ] && [ -x "$DIR/$SCRIPTDIR/$script" ] && source "$DIR/$SCRIPTDIR/$script"
+ [ -f "$DIR/$SCRIPTDIR/$script" ] && [ -x "$DIR/$SCRIPTDIR/$script" ] && . "$DIR/$SCRIPTDIR/$script"
done
fi