Skip to content

Commit db926fc

Browse files
Verbose mode in checkSystem
1 parent 396c742 commit db926fc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

contribute.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function contribute(verbose)
1818
addpath(genpath(fileparts(which(mfilename))));
1919

2020
% check the system and set the configuration
21-
checkSystem();
21+
checkSystem(mfilename);
2222

2323
if nargin > 0
2424
if verbose

src/checkRemoteFork.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function checkRemoteFork()
88
global gitCmd
99

1010
% check the system and set the configuration
11-
checkSystem();
11+
checkSystem(mfilename);
1212

1313
% check the URLs of the fork and the remote repository
1414
if isfield(gitConf, 'userName') && ~isempty(gitConf.userName)

src/initDevTools.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function initDevTools()
88
global gitCmd
99

1010
% check the system and set the configuration
11-
checkSystem();
11+
checkSystem(mfilename);
1212

1313
if ~isfield(gitConf, 'userName'), gitConf.userName = []; end
1414
if ~isfield(gitConf, 'localDir'), gitConf.localDir = []; end

src/resetDevTools.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function resetDevTools()
88
global gitCmd
99

1010
% call checkSystem to set default values for gitConf and gitCmd
11-
checkSystem();
11+
checkSystem(mfilename);
1212

1313
% unset the user name
1414
[status_gitConfUserGet, result_gitConfUserGet] = system('git config --global --unset-all user.github-username');

0 commit comments

Comments
 (0)