Skip to content
Snippets Groups Projects
Commit 33394b5e authored by Ben Heasly's avatar Ben Heasly
Browse files

dont make zips on dry run

parent dcac10ca
No related branches found
No related tags found
No related merge requests found
...@@ -61,7 +61,9 @@ for ee = 1:nExamples ...@@ -61,7 +61,9 @@ for ee = 1:nExamples
% zip up the example % zip up the example
archiveTemp = fullfile(tempRoot, [exampleName '.zip']); archiveTemp = fullfile(tempRoot, [exampleName '.zip']);
zip(archiveTemp, exampleDir); if ~dryRun
zip(archiveTemp, exampleDir);
end
% publish the zip % publish the zip
artifactCell{ee} = publishFile(rdtConfig, archiveTemp, remotePath,... artifactCell{ee} = publishFile(rdtConfig, archiveTemp, remotePath,...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment