diff options
| -rw-r--r-- | cscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ def package(target, version): os.mkdir(d) for f in ['asdcp-cth.dll', 'cxml-0.dll', 'dcp-1.0.dll', 'kumu-cth.dll', 'libopenjp2.dll', 'dcpinfo.exe']: shutil.copyfile('%s/bin/%s' % (target.directory, f), os.path.join(d, f)) - os.system('zip -9 -r build/libdcp-%s.zip %s' % (version, d)) + target.command('zip -9 -r build/libdcp-%s.zip %s' % (version, d)) return os.path.abspath('build/libdcp-%s.zip' % version) def make_doxygen(target): |
