diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-06-04 14:11:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-06-04 14:11:52 -0400 |
commit | 5bc5dc73572e1eaa90b16ab96795bfb85fad661b (patch) | |
tree | 40799fc891cc92f13177a0ca8baeb17f2af82558 | |
parent | eda68064489c11596bdbf641c4a2b74dfa645025 (diff) | |
download | ipsutils-5bc5dc73572e1eaa90b16ab96795bfb85fad661b.tar.gz |
ZIP file format implemented
-rw-r--r-- | ipsutils/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
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
|