Skip to content
Snippets Groups Projects
Commit 4084e264 authored by Lemmer, Jan's avatar Lemmer, Jan
Browse files

Add fix

parent 37aa33c5
No related branches found
2 merge requests!62Introduce changes for V1.0 RC 1,!55Implements #96
Pipeline #652620 passed
......@@ -2,7 +2,7 @@ function pList = copyUserFCN(scriptPath, folderName, storPath, ID)
[fList,pList] = matlab.codetools.requiredFilesAndProducts(scriptPath);
fList = fList(~ismember(fList,scriptPath)); % rmv plot script itself from list
fList = fList(~contains(fList,'config.json')); % rmv config.json from list
fList = PlotID.removePltIdFiles(fList); % Do not copy files that are part of PlotID
fList = removePltIdFiles(fList); % Do not copy files that are part of PlotID
if ~isempty(fList)
PlotID.createFileCopy(fList,folderName,storPath,ID,'userFcn');
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment