Update unarchive

Modified argument order provided to unzip command as the -o was being interpreted as a file.
reviewable/pr18780/r1
greenbrian 11 years ago
parent 69531deea1
commit 74a2bf4369

@ -73,7 +73,7 @@ class _zipfile(object):
return dict(bool = False)
def unarchive(self):
cmd = 'unzip "%s" -d "%s" -o' % (self.src,self.dest)
cmd = 'unzip -o "%s" -d "%s"' % (self.src,self.dest)
rc, out, err = self.module.run_command(cmd)
return dict(cmd = cmd, rc=rc, out=out, err=err)

Loading…
Cancel
Save