File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
julia 0.3
2
- Compat
2
+ Compat 0.7.9
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ function get_paths()
12
12
13
13
if matlab_homepath == " "
14
14
if OS_NAME == :Linux
15
- matlab_homepath = dirname (dirname (realpath (chomp (readall (` which matlab` )))))
15
+ matlab_homepath = dirname (dirname (realpath (chomp (readstring (` which matlab` )))))
16
16
elseif OS_NAME == :Darwin
17
17
apps = readdir (" /Applications" )
18
18
filter! (app -> ismatch (r" ^MATLAB_R[0-9]+[ab]\. app$" , app), apps)
@@ -37,7 +37,7 @@ function get_paths()
37
37
38
38
if OS_NAME != :Windows
39
39
default_startcmd = joinpath (matlab_homepath, " bin" , " matlab" )
40
- if ! isexecutable (default_startcmd)
40
+ if ! isfile (default_startcmd)
41
41
error (" The MATLAB path is invalid. Set the MATLAB_HOME evironmental variable to the MATLAB root." )
42
42
end
43
43
default_startcmd = " exec $(Base. shell_escape (default_startcmd)) -nosplash"
You can’t perform that action at this time.
0 commit comments