Commit c3a2f13b authored by jayd1860's avatar jayd1860
Browse files

v1.73.1

-- Fix issue where you get error in getVernum.m when namespace isn't set.
parent 222f6e09
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
1.2.0
 No newline at end of file
1.2.1
 No newline at end of file
+6 −0
Original line number Diff line number Diff line
@@ -4,6 +4,9 @@ if ~exist('appname','var') || isempty(appname)
    if ~exist('appdir','var') || isempty(appdir)
        appdir = getAppDir();
    end
    if isempty(appdir)
        return
    end
    if appdir(end)=='/' || appdir(end)=='\'
        appdir(end) = '';
    end
@@ -13,6 +16,9 @@ end
if ~exist('appdir','var') || isempty(appdir)
    appdir = getAppDir();
end
if isempty(appdir)
    return
end
libdir = '/Shared';
if isdeployed()
    p = appdir;    
+1 −1
Original line number Diff line number Diff line
1.73.0
 No newline at end of file
1.73.1
 No newline at end of file