Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
plotID_matlab
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
plotID
plotID_matlab
Merge requests
!10
Fixes
#26
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fixes
#26
26-fix-remove-adddpath-from-publish
into
development
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Lemmer, Jan
requested to merge
26-fix-remove-adddpath-from-publish
into
development
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Closes
#26 (closed)
0
0
Merge request reports
Compare
development
development (base)
and
latest version
latest version
20486f19
1 commit,
3 years ago
1 file
+
0
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
+PlotID/Publish.m
+
0
−
3
Options
@@ -60,14 +60,12 @@ end
folderName
=
char
(
ID
);
%% Create Data-Directory
addpath
(
storPath
);
% ToDo necessary? -
if
isfolder
(
fullfile
(
storPath
,
folderName
))
error
([
'Folder '
,
folderName
,
' exists - Plot was already published '
]);
elseif
mkdir
(
fullfile
(
storPath
,
folderName
))
else
error
(
'Directory could not be created - check remote path and permissions'
);
end
disp
(
'Publishing started'
);
%% Create a Copy of the script, config and user functions(optional)
@@ -90,7 +88,6 @@ if ~configError %config File must exist
fclose
(
fid
);
end
% user functions
if
options
.
CopyUserFCN
fList
=
fList
(
~
ismember
(
fList
,[
DataPaths
.
script
,
'.m'
]));
% rmv script from list
Loading