From 483e80b4996d04521ef7588eb55434a710aeeaec Mon Sep 17 00:00:00 2001 From: asterite Date: Fri, 5 Jan 2018 17:18:03 -0300 Subject: [PATCH] Compiler: remove extra `shell` argument when executing macro run --- src/compiler/crystal/macros/macros.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/crystal/macros/macros.cr b/src/compiler/crystal/macros/macros.cr index ee4c55f68b10..efe34516c89c 100644 --- a/src/compiler/crystal/macros/macros.cr +++ b/src/compiler/crystal/macros/macros.cr @@ -95,7 +95,7 @@ class Crystal::Program out_io = IO::Memory.new err_io = IO::Memory.new - Process.run(compiled_file, args: args, shell: true, output: out_io, error: err_io) + Process.run(compiled_file, args: args, output: out_io, error: err_io) MacroRunResult.new(out_io.to_s, err_io.to_s, $?) end