From eb206805027438ffe5341c5bfb75b534a94dc239 Mon Sep 17 00:00:00 2001 From: Charlie OKeefe Date: Tue, 24 Jul 2018 16:18:30 -0600 Subject: [PATCH] Remove extra slash from lockfile path --- zcutil/fetch-params.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zcutil/fetch-params.sh b/zcutil/fetch-params.sh index d6c1eb4e3..9f7e2e1c9 100755 --- a/zcutil/fetch-params.sh +++ b/zcutil/fetch-params.sh @@ -140,7 +140,7 @@ function lock() { fi else # create lock file - eval "exec 200>/$lockfile" + eval "exec 200>$lockfile" # acquire the lock flock -n 200 \ && return 0 \