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 c0d327b commit 7c8654bCopy full SHA for 7c8654b
src/subfun/printCreditsCppBids.m
@@ -1,7 +1,11 @@
1
function printCreditsCppBids(cfg)
2
3
- version = fileread(fullfile(fileparts(mfilename('fullpath')), ...
4
- '..', '..', 'version.txt'));
+ try
+ version = fileread(fullfile(fileparts(mfilename('fullpath')), ...
5
+ '..', '..', 'version.txt'));
6
+ catch
7
+ version = 'v1.0.0';
8
+ end
9
10
verbose = true;
11
if ~isempty(cfg) && isfield(cfg, 'verbose') && ~isempty(cfg.verbose)
0 commit comments