We were checking before `kamal build push`, but not `kamal registry login`. Since `kamal registry login` is called first by a deploy we don't get the nice error message.
10 lines
284 B
Ruby
10 lines
284 B
Ruby
module Kamal::Cli
|
|
class BootError < StandardError; end
|
|
class HookError < StandardError; end
|
|
class LockError < StandardError; end
|
|
class DependencyError < StandardError; end
|
|
end
|
|
|
|
# SSHKit uses instance eval, so we need a global const for ergonomics
|
|
KAMAL = Kamal::Commander.new
|