Skip to content

Commit

Permalink
Fix iteration failure in InstallToDir
Browse files Browse the repository at this point in the history
  • Loading branch information
SMUnlimited committed Dec 11, 2023
1 parent a4d421b commit 73a661e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InstallToDir.pl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sub process_dir {
next if $filename eq "." || $filename eq "..";
if ((-d "$dirname/$filename") ) {
print "Installing $ver AMAI to dir $dirname\\$filename\n";
process_dir ("$dirname\\$filename", $commander);
process_dir ($ver, "$dirname\\$filename", $commander);
} elsif ($filename =~ m/\.w3m$/ || $filename =~ m/\.w3x$/ ) {
if (!(defined($commander)) || $commander eq "true") {
print "Installing $ver AMAI and Commander to $dirname/$filename\n";
Expand Down

0 comments on commit 73a661e

Please sign in to comment.