Remove extra slash from lockfile path

This commit is contained in:
Charlie OKeefe
2018-07-24 16:18:30 -06:00
parent a7a62b724b
commit eb20680502

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 \