Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-11-02 17:37:57 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-11-02 17:37:57 (GMT)
commit39aca0154dc2cb73ac8c0eed3dd4962d81232b69 (patch)
treee1bc7ddaff2daff73fbdfd352da9021fab1b1139 /lib
parent72d021b9b44316538ab012cc4e7acc1012974951 (diff)
Unzip should not ask any questions.
Diffstat (limited to 'lib')
-rw-r--r--lib/sugar/bundle/bundle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sugar/bundle/bundle.py b/lib/sugar/bundle/bundle.py
index 8ce3dda..33fd1a8 100644
--- a/lib/sugar/bundle/bundle.py
+++ b/lib/sugar/bundle/bundle.py
@@ -115,7 +115,7 @@ class Bundle:
# Windows/UNIX mappings, extension attributes, deprecated
# features, etc makes it impractical.
# FIXME: use manifest
- if os.spawnlp(os.P_WAIT, 'unzip', 'unzip', self._path,
+ if os.spawnlp(os.P_WAIT, 'unzip', 'unzip', '-o', self._path,
'-x', 'mimetype', '-d', install_dir):
raise ZipExtractException