We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1885f8 commit 7507643Copy full SHA for 7507643
buildfile.m
@@ -5,7 +5,7 @@
5
6
if isMATLABReleaseOlderThan("R2025a")
7
8
- warning("mag:buildtool:path", "MATLAB release ""%s"" not supported for development purposes." + ...
+ warning("mag:buildtool:path", "MATLAB release ""%s"" not supported for development purposes. " + ...
9
"Adding all folders to the path for testing purposes.", matlabRelease().Release);
10
11
% Brute-force add all folders to the path.
@@ -16,7 +16,7 @@
16
package = matlab.mpm.Package(plan.RootFolder);
17
18
if ~package.Installed
19
- mpminstall(package, Authoring = true, Temporary = true, Prompt = false);
+ addpath(join(fullfile(plan.RootFolder, [package.Folders.Path]), pathsep()));
20
end
21
22
0 commit comments