index2.json updated and find command argument order changed

This commit is contained in:
Paul M 2022-08-21 21:00:31 -05:00
parent 5164ab6e8f
commit ec8b3b498e
3 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

BIN
mods

Binary file not shown.

View file

@ -42,7 +42,7 @@ foreach my $key (keys %{ $conf->{"mods"}}) { # the fing arrow -> sigh could have
}
sub get_ready (){
$mods = `find $modpath -type d -maxdepth 1 -print`; # -print is there for a reason, find saved a huge amount of time
$mods = `find $modpath -maxdepth 1 -type d -print`; # -print is there for a reason, find saved a huge amount of time
@mods = split("\n",$mods);
foreach(@mods){
@tmods = split("\/",$_);