Skip to content

Commit

Permalink
Adding the install folder in path
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentheirendt committed Aug 4, 2017
1 parent 764d1ce commit 9409f8d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions initCobraToolbox.m
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,12 @@
% define the root path of The COBRA Toolbox
CBTDIR = fileparts(which('initCobraToolbox'));

% add the external folder first
addpath(genpath([CBTDIR, filesep, 'external']));
% add the external folder
addpath(genpath([CBTDIR filesep 'external']));

% add the install folder
addpath(genpath([CBTDIR filesep 'src' filesep 'base' filesep 'install']));

% check if git is installed
checkGit();

Expand Down

0 comments on commit 9409f8d

Please sign in to comment.