We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41708b3 commit 1cccfebCopy full SHA for 1cccfeb
1 file changed
lib/hatchet/tasks.rb
@@ -1,7 +1,11 @@
1
namespace :hatchet do
2
task :setup_ci do
3
script = File.expand_path(File.join(__dir__, "../../etc/ci_setup.rb"))
4
- out = `#{script}`
+ puts "Running script `#{script}`"
5
+ out = `#{script} 2>&1`
6
+ puts "Done"
7
+ puts "Output:\n"
8
+ puts out
9
raise "Command #{script.inspect} failed\n#{out}" unless $?.success?
10
end
11
0 commit comments