From f167180814cadc96bba21c898a4aaefa2ad8a5b3 Mon Sep 17 00:00:00 2001 From: Sam Eaton Date: Sat, 26 Aug 2017 11:08:25 -0700 Subject: [PATCH 1/2] updates to make compatiable with upcoming crystal update --- shard.yml | 2 +- src/sentry.cr | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/shard.yml b/shard.yml index 11fbe4b..b059800 100644 --- a/shard.yml +++ b/shard.yml @@ -2,6 +2,6 @@ name: sentry version: 1.0.0 authors: - - Sam Eaton + - Sam Eaton license: ISC diff --git a/src/sentry.cr b/src/sentry.cr index 0e2f0e5..86d3261 100644 --- a/src/sentry.cr +++ b/src/sentry.cr @@ -25,9 +25,9 @@ module Sentry puts "🤖 compiling #{process_name}..." build_args = @build_args if build_args.size > 0 - Process.run(@build_command, build_args, shell: true, output: true, error: true) + Process.run(@build_command, build_args, shell: true, output: Process::Redirect::Inherit, error: Process::Redirect::Inherit) else - Process.run(@build_command, shell: true, output: true, error: true) + Process.run(@build_command, shell: true, output: Process::Redirect::Inherit, error: Process::Redirect::Inherit) end end @@ -43,9 +43,9 @@ module Sentry puts "🤖 starting #{process_name}..." run_args = @run_args if run_args.size > 0 - @app_process = Process.new(@run_command, run_args, output: true, error: true) + @app_process = Process.new(@run_command, run_args, output: Process::Redirect::Inherit, error: Process::Redirect::Inherit) else - @app_process = Process.new(@run_command, output: true, error: true) + @app_process = Process.new(@run_command, output: Process::Redirect::Inherit, error: Process::Redirect::Inherit) end end From 92dffe733eeb37a82bde1ea8674deb50a27f1353 Mon Sep 17 00:00:00 2001 From: Sam Eaton Date: Fri, 12 Jan 2018 08:27:50 -0800 Subject: [PATCH 2/2] bumps version; adds crystal version --- shard.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shard.yml b/shard.yml index b059800..0abcccf 100644 --- a/shard.yml +++ b/shard.yml @@ -1,7 +1,7 @@ name: sentry -version: 1.0.0 +version: 0.2.0 authors: - Sam Eaton - +crystal: 0.24.1 license: ISC