From 0ea3451d81faf7cfcb9d9b8518b9e4a55e32223a Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Thu, 28 Feb 2013 18:37:25 -0800 Subject: [PATCH] don't prompt --- extractor/extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extractor/extractor.py b/extractor/extractor.py index 39da9d36..43f10ba2 100644 --- a/extractor/extractor.py +++ b/extractor/extractor.py @@ -63,7 +63,7 @@ def extract(dirpath, file, outputDestination): # ".bz2": ["bzip2", "-d --keep"], EXTRACT_COMMANDS = { - ".rar": ["unrar", "x"], + ".rar": ["unrar", "x -y"], ".tar": ["tar", "-xf"], ".zip": ["unzip", ""], ".tar.gz": ["tar", "-xzf"], ".tgz": ["tar", "-xzf"],