Compare commits

...

4 Commits

Author SHA1 Message Date
David Dollar
9632227d29 0.37.0.pre5 2012-01-24 08:34:48 -08:00
David Dollar
288d118ca4 Merge pull request #142 from apollo13/master
Fix bash string comparision
2012-01-24 08:29:38 -08:00
David Dollar
576455b8d7 rename readme 2012-01-24 08:14:50 -08:00
Florian Apolloner
e1d3955d3c Fix the test for an empty string in bin/runner 2012-01-24 09:51:16 +01:00
4 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
PATH
remote: .
specs:
foreman (0.37.0.pre4)
foreman (0.37.0.pre5)
term-ansicolor (~> 1.0.7)
thor (>= 0.13.6)

View File

@@ -29,7 +29,7 @@ shift $((OPTIND-1))
command=$1
if [ "$1" == "" ]; then
if [ -z "$1" ]; then
usage
fi

View File

@@ -1,5 +1,5 @@
module Foreman
VERSION = "0.37.0.pre4"
VERSION = "0.37.0.pre5"
end