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 f962932 commit e3f4158Copy full SHA for e3f4158
+stdlib/create_symlink.m
@@ -32,19 +32,9 @@
32
% see example/Filesystem.java for this working in plain Java.
33
% see example/javaCreateSymbolicLink.m for a non-working attempt in Matlab.
34
35
- disp("'buildtool mex' for faster symlink creation")
+ warning(e.identifier, "buildtool mex \n%s", e.message)
36
37
- if ispc
38
- cmd = "pwsh -c " + '"' + "New-Item -ItemType SymbolicLink -Path " + link + ...
39
- " -Target " + target + '"';
40
- else
41
- cmd = "ln -s " + target + " " + link;
42
- end
43
-
44
- % suppress output text on powershell
45
- [stat, ~] = system(cmd);
46
47
- ok = stat == 0;
+ ok = false;
48
elseif strcmp(e.identifier, "Octave:undefined-function")
49
[err, msg] = symlink(target, link);
50
ok = err == 0;
0 commit comments