Skip to content

Commit 18b9f3b

Browse files
committed
Fix deployment integration
The spinW base can now be pulled directly into the standalone_dev branch. - Remove dev files from the repo . - Change the version to account for deployed. Former-commit-id: 7f3cbea
1 parent d6a61b0 commit 18b9f3b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ _pdf
1414
*.tap
1515

1616
*.asv
17+
18+
dev/standalone/Linux/Source/
19+
dev/standalone/Win/Source/
20+
dev/standalone/MacOS/Source/

swfiles/sw_version.m

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818
% release date and license.
1919
%
2020

21+
% Take into account deployed installs
22+
if isdeployed
23+
outStr = struct;
24+
return
25+
end
26+
2127
% read file header from sw_version.m file
2228
fid = fopen('sw_version.m');
2329

@@ -48,7 +54,6 @@
4854
[~, verSel] = strtok(verSel,'$'); %#ok<*STTOK>
4955
[partStr{end+1}, verSel] = strtok(verSel,'$');
5056
end
51-
5257
end
5358

5459
nField = numel(partStr);

0 commit comments

Comments
 (0)