sleep before folder removal

This commit is contained in:
Dominik Schürmann 2015-09-28 01:41:41 +02:00
parent 178eabfd01
commit f27823adc8

View File

@ -229,8 +229,9 @@ abstract class InstallExtension {
@Override
protected List<String> getCleanUninstallCommands() {
final List<String> commands = new ArrayList<>(2);
final List<String> commands = new ArrayList<>(3);
commands.add("rm -f " + getInstallPath());
commands.add("sleep 1");
commands.add("rm -f " + getSystemFolder());
return commands;
}