Compare commits

...

3 Commits

Author SHA1 Message Date
David Dollar
64f0749d16 0.59.0 2012-09-15 11:49:46 +09:00
David Dollar
6b77ca1e46 Merge pull request #246 from jeremyevans/patch-1
Don't have foreman-runner depend on bash
2012-09-14 19:48:03 -07:00
Jeremy Evans
6a44dd3fd3 Use /bin/sh instead of bash for foreman-runner
/bin/sh should be installed by default on all unix machines, bash
is not necessarily installed on all machines.
2012-09-14 17:35:54 -07:00
3 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
PATH
remote: .
specs:
foreman (0.58.0)
foreman (0.59.0)
thor (>= 0.13.6)
GEM

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
#
#/ Usage: foreman-runner [-d <dir>] [-p] <command> [<args>...]
#/
@@ -32,9 +32,9 @@ shift $((OPTIND-1))
[ -z "$1" ] && usage
if [ "$read_profile" == "1" ]; then
if [ "$read_profile" = "1" ]; then
if [ -f .profile ]; then
source .profile
. .profile
fi
fi

View File

@@ -1,5 +1,5 @@
module Foreman
VERSION = "0.58.0"
VERSION = "0.59.0"
end