diff options
-rw-r--r-- | o3d/tests/lab/runner_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/o3d/tests/lab/runner_util.py b/o3d/tests/lab/runner_util.py index e80b7ee..cad387f 100644 --- a/o3d/tests/lab/runner_util.py +++ b/o3d/tests/lab/runner_util.py @@ -145,7 +145,7 @@ def UninstallO3DPlugin(): else: for path in const.INSTALL_PATHS: if os.path.exists(path): - os.remove(path) + os.system('echo g00gl3 | sudo -S rm -rf "%s"' % path) return not DoesAnO3DPluginExist() |