2017-07-05 23:53:31 +02:00
|
|
|
diff --git a/support/go_build.rb b/support/go_build.rb
|
2018-03-14 14:04:39 +01:00
|
|
|
index 30a6b71..46b4dfa 100644
|
2017-07-05 23:53:31 +02:00
|
|
|
--- a/support/go_build.rb
|
|
|
|
+++ b/support/go_build.rb
|
2018-03-14 14:04:39 +01:00
|
|
|
@@ -26,8 +26,8 @@ module GoBuild
|
2017-07-05 23:53:31 +02:00
|
|
|
raise "env must be a hash" unless env.is_a?(Hash)
|
|
|
|
raise "cmd must be an array" unless cmd.is_a?(Array)
|
2018-04-25 19:55:58 +02:00
|
|
|
|
|
|
|
- unless system(env, *cmd)
|
2017-07-05 23:53:31 +02:00
|
|
|
- abort "command failed: #{env.inspect} #{cmd.join(' ')}"
|
|
|
|
- end
|
|
|
|
+ puts "Starting #{env.inspect} #{cmd.join(' ')}"
|
|
|
|
+ Process::wait(Process::spawn(env, *cmd))
|
|
|
|
+ abort "command failed: #{env.inspect} #{cmd.join(' ')}" unless $?.exitstatus == 0
|
|
|
|
end
|
|
|
|
end
|