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

zip with relative paths intead of absolute

parent bf548ee6
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ for ee = 1:nExamples ...@@ -57,7 +57,7 @@ for ee = 1:nExamples
% zip up the example % zip up the example
archiveTemp = fullfile(tempRoot, [exampleName '.zip']); archiveTemp = fullfile(tempRoot, [exampleName '.zip']);
if ~dryRun if ~dryRun
zip(archiveTemp, exampleDir); zip(archiveTemp, '.', exampleDir);
end end
% publish the zip % publish the zip
......
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