Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit fc6f20f

Browse filesBrowse files
committed
tidy up, added no nested zip option. Still doesn't pack source files from /stl
1 parent 0f51f68 commit fc6f20f
Copy full SHA for fc6f20f

File tree

1 file changed

+8
-5
lines changed
Filter options

1 file changed

+8
-5
lines changed

‎stl/postbuild.m

Copy file name to clipboard
+8-5Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
function postbuild(projectName, buildInfo)
2-
disp('in postbuild')
2+
fprintf('in postbuild for %s\n', projectName);
33

4-
projectName
5-
6-
packNGo(buildInfo, {'fileName' [projectName '.zip'] 'packType' 'hierarchical'});
7-
end
4+
options = {
5+
'fileName', [projectName '.zip'], ...
6+
'packType', 'hierarchical', ...
7+
'nestedZipFiles', false ...
8+
}
9+
packNGo(buildInfo, options);
10+
end

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.