We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2241adf commit bec0985Copy full SHA for bec0985
pkg/commands/executor.go
@@ -223,4 +223,7 @@ func (e *Executor) releaseFileLock() {
223
if err := e.flock.Unlock(); err != nil {
224
e.debugf("Failed to unlock on file: %s", err)
225
}
226
+ if err := os.Remove(e.flock.Path()); err != nil {
227
+ e.debugf("Failed to remove lock file: %s", err)
228
+ }
229
0 commit comments