1. Don't raise lock error for non-lock issues during lock acquire (see https://github.com/mrsked/mrsk/pull/181) 2. If there is an error while the lock is held, don't release the lock and send a warning to stderr
7 lines
158 B
Ruby
7 lines
158 B
Ruby
module Mrsk::Cli
|
|
class LockError < StandardError; end
|
|
end
|
|
|
|
# SSHKit uses instance eval, so we need a global const for ergonomics
|
|
MRSK = Mrsk::Commander.new
|