sleep before folder removal
This commit is contained in:
parent
178eabfd01
commit
f27823adc8
@ -229,8 +229,9 @@ abstract class InstallExtension {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<String> getCleanUninstallCommands() {
|
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("rm -f " + getInstallPath());
|
||||||
|
commands.add("sleep 1");
|
||||||
commands.add("rm -f " + getSystemFolder());
|
commands.add("rm -f " + getSystemFolder());
|
||||||
return commands;
|
return commands;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user