Subject: | use-devel-checkos doesn't work |
use-devel-checkos is doing:
my @oses = @ARGV || die("You must specify at least one OS\n");
But, at least on the version of perl I have (5.8.8), that ends up
putting @ARGV into scalar context, so @oses just contains the number of
arguments given, not the actual arguments.
Changing the '||' to 'or' fixes this.