We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d3a24c commit 83eab9aCopy full SHA for 83eab9a
src/commands/build.cr
@@ -34,7 +34,7 @@ module Shards
34
Shards.logger.debug "crystal #{args.join(' ')}"
35
36
error = IO::Memory.new
37
- status = Process.run("crystal", args: args, output: error, error: error)
+ status = Process.run("crystal", args: args, output: Process::Redirect::Inherit, error: error)
38
raise Error.new("Error target #{target.name} failed to compile:\n#{error}") unless status.success?
39
end
40
0 commit comments