Skip to content

Commit

Permalink
bugfix: introduction of longopts broke stdin
Browse files Browse the repository at this point in the history
  • Loading branch information
aurora committed Sep 6, 2014
1 parent 8d8deee commit c0bd8e4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions rmate
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@

# init
#
version="0.9.0"
version_date="2014-09-02"
version="0.9.1"
version_date="2014-09-06"
version_string="rmate-sh $version ($version_date)"

# determine hostname
Expand Down Expand Up @@ -145,6 +145,9 @@ function canonicalize {

while test "${1:0:1}" = "-"; do
case $1 in
-)
break
;;
-H|--host)
host=$2
shift
Expand Down

0 comments on commit c0bd8e4

Please sign in to comment.