Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bucanl_eeglab_extensions
Batch Context
Commits
83d98442
Commit
83d98442
authored
May 08, 2018
by
mikec1
Browse files
Removed trailing slash in bids import.
parent
ff4be57e
Changes
1
Hide whitespace changes
Inline
Side-by-side
batch/pop_func/pop_rfind.m
View file @
83d98442
...
...
@@ -59,7 +59,7 @@ function out=pop_rfind(projRoot, searchRoot)
ind
=
find
(
ismember
(
reSplit
,
projName
));
finalPath
=
''
;
for
i
=
ind
+
1
:
length
(
reSplit
)
% Matlab doesn't have a cell2str...
finalPath
=
sprintf
(
'%s%s
/
'
,
finalPath
,
reSplit
{
i
});
finalPath
=
sprintf
(
'%s%s'
,
finalPath
,
reSplit
{
i
});
end
% Build return variable.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment