Skip to content

Commit

Permalink
Delete .htaccess files in the background
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Apr 30, 2023
1 parent 3b8b5ec commit d3bde65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upgrade.php
Expand Up @@ -223,11 +223,11 @@ function _do_cleanup()
}
else if ($file[strlen($file)-1] !== "/") // wildcard
{
system("rm " . $file);
system("rm " . $file . " &");
}
else // folder
{
system("rm -rf " . $file);
system("rm -rf " . $file . " &");
}
}
else
Expand Down

0 comments on commit d3bde65

Please sign in to comment.