From 5bc5dc73572e1eaa90b16ab96795bfb85fad661b Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 4 Jun 2013 14:11:52 -0400 Subject: ZIP file format implemented --- ipsutils/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipsutils') diff --git a/ipsutils/tasks.py b/ipsutils/tasks.py index 66a0f86..5c95bad 100644 --- a/ipsutils/tasks.py +++ b/ipsutils/tasks.py @@ -167,7 +167,7 @@ class Unpack(task.Task): '.tar.xz': '{0:s} xfJ {1:s} -C {2:s}'.format(self.cls.tool['tar'], path, self.cls.env['BUILD']), '.gz': self.cls.tool['gunzip'], # not implemented '.bz2': self.cls.tool['bunzip'], # not implemented - '.zip': self.cls.tool['unzip'] # not implemented + '.zip': '{0:s} {1:s} -d {2:s}'.format(self.cls.tool['unzip'], path, self.cls.env['BUILD']) } err = None -- cgit