Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Perlito5 - command line - fix @inc order
  • Loading branch information
fglock committed Jun 11, 2014
1 parent d629c6a commit 11913e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src5/util/perlito5.pl
Expand Up @@ -93,11 +93,11 @@ package Perlito5;
elsif ($ARGV[0] eq '-I') {
shift @ARGV;
my $lib = shift @ARGV;
unshift @INC, $lib;
push @INC, $lib;
}
elsif (substr($ARGV[0], 0, 2) eq '-I') {
my $lib = substr($ARGV[0], 2);
unshift @INC, $lib;
push @INC, $lib;
shift @ARGV;
}
elsif (substr($ARGV[0], 0, 2) eq '-C') {
Expand Down

0 comments on commit 11913e2

Please sign in to comment.