Skip to content

Commit 199cadd

Browse files
authored
Merge pull request #46 from cpp-lln-lab/dev
[FIX] make sure CPP BIDS is properly added to the path
2 parents 5895868 + edc8d57 commit 199cadd

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@
66
*.tsv
77
*.mat
88

9+
output
10+
911
## virtual env
1012
env/
1113
venv/
1214

1315
## visual studio code
1416
.vscode
1517

16-
1718
## MATLAB / OCTAVE gitignore template
1819

1920
# From : https://github.com/github/gitignore/blob/master/Global/MATLAB.gitignore

initEnv.m

+3-1
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,10 @@ function tryInstallFromForge(packageName)
9999
function addDependencies()
100100

101101
pth = fileparts(mfilename('fullpath'));
102-
addpath(genpath(fullfile(pth, 'lib', 'CPP_BIDS', 'src')));
102+
addpath(fullfile(pth, 'lib', 'CPP_BIDS'));
103103
addpath(genpath(fullfile(pth, 'lib', 'CPP_PTB', 'src')));
104104
addpath(fullfile(pth, 'subfun'));
105105

106+
checkCppBidsDependencies();
107+
106108
end

setParameters.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
%% Engine parameters
2626

2727
cfg.testingDevice = 'mri';
28-
cfg.eyeTracker.do = true;
28+
cfg.eyeTracker.do = false;
2929
cfg.audio.do = true;
3030

3131
cfg = setMonitor(cfg);

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.2.1
1+
v0.2.2

0 commit comments

Comments
 (0)