Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fslpy
Commits
496ea672
Commit
496ea672
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
RF: Further adjustments to immv/imcp exit code handling
parent
a3c38e7f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fsl/scripts/imcp.py
+11
-5
11 additions, 5 deletions
fsl/scripts/imcp.py
fsl/scripts/immv.py
+11
-5
11 additions, 5 deletions
fsl/scripts/immv.py
with
22 additions
and
10 deletions
fsl/scripts/imcp.py
+
11
−
5
View file @
496ea672
...
@@ -53,12 +53,18 @@ def main(argv=None):
...
@@ -53,12 +53,18 @@ def main(argv=None):
print
(
usage
)
print
(
usage
)
return
1
return
1
srcs
=
fslpath
.
removeDuplicates
(
srcs
,
try
:
allowedExts
=
fslimage
.
ALLOWED_EXTENSIONS
,
srcs
=
fslpath
.
removeDuplicates
(
fileGroups
=
fslimage
.
FILE_GROUPS
)
srcs
,
allowedExts
=
fslimage
.
ALLOWED_EXTENSIONS
,
fileGroups
=
fslimage
.
FILE_GROUPS
)
for
src
in
srcs
:
for
src
in
srcs
:
imcp
.
imcp
(
src
,
dest
,
useDefaultExt
=
True
,
overwrite
=
True
)
imcp
.
imcp
(
src
,
dest
,
useDefaultExt
=
True
,
overwrite
=
True
)
except
Exception
as
e
:
print
(
str
(
e
))
return
1
return
0
return
0
...
...
This diff is collapsed.
Click to expand it.
fsl/scripts/immv.py
+
11
−
5
View file @
496ea672
...
@@ -54,12 +54,18 @@ def main(argv=None):
...
@@ -54,12 +54,18 @@ def main(argv=None):
print
(
usage
)
print
(
usage
)
return
1
return
1
srcs
=
fslpath
.
removeDuplicates
(
srcs
,
try
:
allowedExts
=
fslimage
.
ALLOWED_EXTENSIONS
,
srcs
=
fslpath
.
removeDuplicates
(
fileGroups
=
fslimage
.
FILE_GROUPS
)
srcs
,
allowedExts
=
fslimage
.
ALLOWED_EXTENSIONS
,
fileGroups
=
fslimage
.
FILE_GROUPS
)
for
src
in
srcs
:
for
src
in
srcs
:
imcp
.
immv
(
src
,
dest
,
useDefaultExt
=
True
,
overwrite
=
True
)
imcp
.
immv
(
src
,
dest
,
useDefaultExt
=
True
,
overwrite
=
True
)
except
Exception
as
e
:
print
(
str
(
e
))
return
1
return
0
return
0
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment