This commit is contained in:
David Heinemeier Hansson
2023-05-22 14:04:03 +02:00
committed by Donal McBreen
parent 910f14e9c0
commit 5ab630cb03

View File

@@ -15,8 +15,8 @@ class Mrsk::Cli::Build < Mrsk::Cli::Base
cli = self
verify_local_dependencies
run_hook "pre-build"
run_hook("pre-build")
run_locally do
begin
MRSK.with_verbosity(:debug) { execute *MRSK.builder.push }
@@ -32,7 +32,8 @@ class Mrsk::Cli::Build < Mrsk::Cli::Base
end
end
end
run_hook("post-push")
run_hook "post-push"
end
end