ruby-changes:44291
From: kazu <ko1@a...>
Date: Thu, 6 Oct 2016 21:15:06 +0900 (JST)
Subject: [ruby-changes:44291] kazu:r56364 (trunk): Fix cmd is referenced but not assigned
kazu 2016-10-06 21:15:00 +0900 (Thu, 06 Oct 2016) New Revision: 56364 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56364 Log: Fix cmd is referenced but not assigned Modified files: trunk/tool/bisect.sh Index: tool/bisect.sh =================================================================== --- tool/bisect.sh (revision 56363) +++ tool/bisect.sh (revision 56364) @@ -38,7 +38,7 @@ case $1 in https://github.com/ruby/ruby/blob/trunk/tool/bisect.sh#L38 echo foo bar ;; * ) - echo unknown command "'$cmd'" 1>&2 + echo unknown command "'$1'" 1>&2 exit 1 ;; esac -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/