Skip to content

Commit

Permalink
Merge pull request #529 from sighupio/chore-better-lock-file-message
Browse files Browse the repository at this point in the history
chore(lockfile): improve error message
  • Loading branch information
ralgozino authored Aug 1, 2024
2 parents 6f04d5b + 1d1dbb7 commit 9c88d7f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/lockfile/lockfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ import (
"path/filepath"
)

var ErrLockFileExists = errors.New("lock file exists")
var ErrLockFileExists = errors.New(
"lock file exists. This usually means that there is another instance of furyctl running",
)

type LockFile struct {
Path string
Expand Down

0 comments on commit 9c88d7f

Please sign in to comment.