Skip to content

Commit

Permalink
Some more foreman -> overman
Browse files Browse the repository at this point in the history
  • Loading branch information
dentarg committed Oct 28, 2022
1 parent 3289ff2 commit f68f45f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit f68f45f

Please sign in to comment.