Auto merge of #3416 - charlieok:3415_fix_double_slash_error, r=bitcartel

Remove extra slash from lockfile path

Issue: https://github.com/zcash/zcash/issues/3415

After this change I can successfully run `fetch-params` in an msys2 environment.
This commit is contained in:
Homu 2018-07-26 08:42:57 -07:00
commit 52e2f2cec9
1 changed files with 1 additions and 1 deletions

View File

@ -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 \