fix name of lock file

It was the stringification of a UUID, so "UUID \"foo\""
This commit is contained in:
Joey Hess 2020-10-29 10:53:01 -04:00
parent e505c03bcc
commit b05015f772
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -54,7 +54,7 @@ runHooks r starthook stophook a = do
firstrun lck
a
where
remoteid = show (uuid r)
remoteid = fromUUID (uuid r)
run Nothing = noop
run (Just command) = void $ liftIO $
boolSystem "sh" [Param "-c", Param command]