Originally posted by bartonc
In the line below you have 2 apostropies around the first %s that you dont need. Remove them and the script will work fine.
Before
zip_command = "zip -qr '%s' %s" % (target, ' '.join(source))
After
zip_command = "zip -qr %s %s" % (target, ' '.join(source))
Comment