Skip to content

Commit

Permalink
Bugfix: Executing scripts with capital characters from compiled version
Browse files Browse the repository at this point in the history
  • Loading branch information
ftadel committed Feb 13, 2023
1 parent 99f40df commit f3c58de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions brainstorm.m
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,10 @@

otherwise
% Check if trying to execute a script
if file_exist(action)
ScriptFile = action;
elseif file_exist(fullfile(pwd, action))
ScriptFile = fullfile(pwd, action);
if file_exist(varargin{1})
ScriptFile = varargin{1};
elseif file_exist(fullfile(pwd, varargin{1}))
ScriptFile = fullfile(pwd, varargin{1});
else
ScriptFile = [];
end
Expand Down
2 changes: 1 addition & 1 deletion doc/license.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<body alink="#fff000" link="#fff000" vlink="#fff000">
<h4><span style="font-family: Arial Black; color: #ffffff;"><strong>THERE IS NO UNDO BUTTON!<BR>SET UP A <FONT color=red>BACKUP</FONT> OF YOUR DATABASE</strong></span></h4>
<HR>
<!-- LICENCE_START -->Version: 3.230211 (11-Feb-2023)<br>
<!-- LICENCE_START -->Version: 3.230213 (13-Feb-2023)<br>
<span style="font-style: italic;">COPYRIGHT &copy; 2000-2023
USC &amp; McGill University.<br>
</span>
Expand Down
2 changes: 1 addition & 1 deletion doc/version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
% Brainstorm
% v. 3.230211 (11-Feb-2023)
% v. 3.230213 (13-Feb-2023)

0 comments on commit f3c58de

Please sign in to comment.