From f68f45fe01fd0c75dc9cdae57e917ac5ab5ea4cf Mon Sep 17 00:00:00 2001 From: Patrik Ragnarsson Date: Fri, 28 Oct 2022 14:50:48 +0200 Subject: [PATCH] Some more `foreman` -> `overman` --- README.md | 2 +- spec/spec_helper.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8c2cb13d..f8e55c55 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Overman (`ddollar/foreman` fork) -[![CI](https://github.com/spinels/foreman/actions/workflows/ci.yml/badge.svg)](https://github.com/spinels/foreman/actions/workflows/ci.yml) +[![CI](https://github.com/spinels/overman/actions/workflows/ci.yml/badge.svg)](https://github.com/spinels/overman/actions/workflows/ci.yml) Manage Procfile-based applications diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 2934458a..97264151 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -37,7 +37,7 @@ def foreman(args) def forked_foreman(args) rd, wr = make_pipe - Process.spawn("bundle exec bin/foreman #{args}", :out => wr, :err => wr) + Process.spawn("bundle exec bin/overman #{args}", :out => wr, :err => wr) wr.close rd.read end @@ -62,7 +62,7 @@ def fork_and_capture(&blk) end def fork_and_get_exitstatus(args) - pid = Process.spawn("bundle exec bin/foreman #{args}", :out => "/dev/null", :err => "/dev/null") + pid = Process.spawn("bundle exec bin/overman #{args}", :out => "/dev/null", :err => "/dev/null") Process.wait(pid) $?.exitstatus end