Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ufo] fixed last commit
Thinko pointed out by arnsholt++.
  • Loading branch information
Carl Masak committed Jun 30, 2010
1 parent 9ee7340 commit 917839a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ufo
Expand Up @@ -13,7 +13,7 @@ if @*ARGS == 1 && @*ARGS[0] eq '--alpha' {
}
# RAKUDO: Should only need to test for @*ARGS being empty here, but a '-'
# is erroneously added to @*ARGS when no args are sent in. [perl #76290]
elsif @*ARGS != 1 || @*ARGS[0] ne '-' {
elsif @*ARGS > 1 || @*ARGS[0] ne '-' {
note "Usage: ufo [--alpha]";
exit 1;
}
Expand Down

0 comments on commit 917839a

Please sign in to comment.