Skip to content

Commit

Permalink
🐛 fix paramname
Browse files Browse the repository at this point in the history
  • Loading branch information
tpfau committed Mar 19, 2018
1 parent d609c80 commit 3fd5162
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion initCobraToolbox.m
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function initCobraToolbox()
end

%get the current content of the init Folder
dirContent = getFilesInDir('gitFileType','ignored');
dirContent = getFilesInDir('gitTypeFlag','ignored');

% add the folders of The COBRA Toolbox
folders = {'tutorials', 'papers', 'binary', 'deprecated', 'src', 'test', '.tmp'};
Expand Down
2 changes: 1 addition & 1 deletion src/base/install/removeGitIgnoredNewFiles.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function removeGitIgnoredNewFiles(directory, oldcontent)
currentDir = cd(directory);

% get the new Content of the folder.
newContent = getFilesInDir('gitFileType','ignored');
newContent = getFilesInDir('gitTypeFlag','ignored');

% get all .log files that were present only after initCobraToolbox was called.
newIgnoredFiles = setdiff(newContent, oldcontent);
Expand Down

0 comments on commit 3fd5162

Please sign in to comment.