index2.json updated and find command argument order changed
This commit is contained in:
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
BIN
mods
Binary file not shown.
|
@ -42,7 +42,7 @@ foreach my $key (keys %{ $conf->{"mods"}}) { # the fing arrow -> sigh could have
|
||||||
}
|
}
|
||||||
|
|
||||||
sub get_ready (){
|
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);
|
@mods = split("\n",$mods);
|
||||||
foreach(@mods){
|
foreach(@mods){
|
||||||
@tmods = split("\/",$_);
|
@tmods = split("\/",$_);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue