Skip to content

Commit

Permalink
Item815: un reverting George's fix for Item860
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@2431 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
SvenDowideit authored and SvenDowideit committed Feb 10, 2009
1 parent 32c27e3 commit d1fbb84
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/tools/extender.pl
Expand Up @@ -1004,6 +1004,11 @@ sub install {
elsif ( $ARGV[$n] =~ m/(install|uninstall|manifest|dependencies)/ ) {
$action = $1;
}
# SMELL: There really shouldn't be a null argument. But installer breaks if it is there.
elsif ( $ARGV[$n] eq '' ) {
$n++;
next;
}
else {
usage();
die 'Bad parameter ' . $ARGV[$n];
Expand Down

0 comments on commit d1fbb84

Please sign in to comment.