aboutsummaryrefslogtreecommitdiffstats
path: root/config-proxy/src/main/sh/vespa-config-verification.sh
diff options
context:
space:
mode:
Diffstat (limited to 'config-proxy/src/main/sh/vespa-config-verification.sh')
-rw-r--r--config-proxy/src/main/sh/vespa-config-verification.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/config-proxy/src/main/sh/vespa-config-verification.sh b/config-proxy/src/main/sh/vespa-config-verification.sh
index 58c759c9466..308d7f733a4 100644
--- a/config-proxy/src/main/sh/vespa-config-verification.sh
+++ b/config-proxy/src/main/sh/vespa-config-verification.sh
@@ -8,6 +8,10 @@ findpath () {
myname=${0}
mypath=${myname%/*}
myname=${myname##*/}
+ empty_if_start_slash=${mypath%%/*}
+ if [ "${empty_if_start_slash}" ]; then
+ mypath=$(pwd)/${mypath}
+ fi
if [ "$mypath" ] && [ -d "$mypath" ]; then
return
fi