Fix permissions

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2014-12-06 01:42:17 -05:00
parent 9c9be88ce5
commit 2cf9291290

View File

@@ -670,6 +670,9 @@ def sourcezip_builder(gitMode = 'incremental', cmake_args = [], cmake_env = None
# Create the factory to add the actions to
factory = getBaseFactory(gitMode=gitMode)
factory.addStep(MakeDirectory(dir='install_root/source', haltOnFailure = True))
factory.addStep(ShellCommand(command='chmod +x git-archive-all',
workdir= "build/dev/scripts",
haltOnFailure = True))
factory.addStep(ShellCommand(command='dev/scripts/git-archive-all ../install_root/source/coolpropsource.zip',
workdir= "build",
haltOnFailure = True))