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
ba8b7dc2
Commit
ba8b7dc2
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Adjust imcp/immv exit code management
parent
0494f48f
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
+7
-8
7 additions, 8 deletions
fsl/scripts/imcp.py
fsl/scripts/immv.py
+7
-7
7 additions, 7 deletions
fsl/scripts/immv.py
with
14 additions
and
15 deletions
fsl/scripts/imcp.py
+
7
−
8
View file @
ba8b7dc2
...
@@ -43,13 +43,15 @@ def main(argv=None):
...
@@ -43,13 +43,15 @@ def main(argv=None):
argv
=
sys
.
argv
[
1
:]
argv
=
sys
.
argv
[
1
:]
if
len
(
argv
)
<
2
:
if
len
(
argv
)
<
2
:
raise
RuntimeError
(
usage
)
print
(
usage
)
return
1
srcs
=
argv
[:
-
1
]
srcs
=
argv
[:
-
1
]
dest
=
argv
[
-
1
]
dest
=
argv
[
-
1
]
if
len
(
srcs
)
>
1
and
not
op
.
isdir
(
dest
):
if
len
(
srcs
)
>
1
and
not
op
.
isdir
(
dest
):
raise
RuntimeError
(
usage
)
print
(
usage
)
return
1
srcs
=
fslpath
.
removeDuplicates
(
srcs
,
srcs
=
fslpath
.
removeDuplicates
(
srcs
,
allowedExts
=
fslimage
.
ALLOWED_EXTENSIONS
,
allowedExts
=
fslimage
.
ALLOWED_EXTENSIONS
,
...
@@ -58,11 +60,8 @@ def main(argv=None):
...
@@ -58,11 +60,8 @@ def main(argv=None):
for
src
in
srcs
:
for
src
in
srcs
:
imcp
.
imcp
(
src
,
dest
,
useDefaultExt
=
True
,
overwrite
=
True
)
imcp
.
imcp
(
src
,
dest
,
useDefaultExt
=
True
,
overwrite
=
True
)
return
0
if
__name__
==
'
__main__
'
:
try
:
if
__name__
==
'
__main__
'
:
main
()
sys
.
exit
(
main
())
except
Exception
as
e
:
print
(
e
)
sys
.
exit
(
1
)
This diff is collapsed.
Click to expand it.
fsl/scripts/immv.py
+
7
−
7
View file @
ba8b7dc2
...
@@ -44,13 +44,15 @@ def main(argv=None):
...
@@ -44,13 +44,15 @@ def main(argv=None):
argv
=
sys
.
argv
[
1
:]
argv
=
sys
.
argv
[
1
:]
if
len
(
argv
)
<
2
:
if
len
(
argv
)
<
2
:
raise
RuntimeError
(
usage
)
print
(
usage
)
return
1
srcs
=
argv
[:
-
1
]
srcs
=
argv
[:
-
1
]
dest
=
argv
[
-
1
]
dest
=
argv
[
-
1
]
if
len
(
srcs
)
>
1
and
not
op
.
isdir
(
dest
):
if
len
(
srcs
)
>
1
and
not
op
.
isdir
(
dest
):
raise
RuntimeError
(
usage
)
print
(
usage
)
return
1
srcs
=
fslpath
.
removeDuplicates
(
srcs
,
srcs
=
fslpath
.
removeDuplicates
(
srcs
,
allowedExts
=
fslimage
.
ALLOWED_EXTENSIONS
,
allowedExts
=
fslimage
.
ALLOWED_EXTENSIONS
,
...
@@ -59,10 +61,8 @@ def main(argv=None):
...
@@ -59,10 +61,8 @@ def main(argv=None):
for
src
in
srcs
:
for
src
in
srcs
:
imcp
.
immv
(
src
,
dest
,
useDefaultExt
=
True
,
overwrite
=
True
)
imcp
.
immv
(
src
,
dest
,
useDefaultExt
=
True
,
overwrite
=
True
)
return
0
if
__name__
==
'
__main__
'
:
if
__name__
==
'
__main__
'
:
try
:
sys
.
exit
(
main
())
main
()
except
Exception
as
e
:
print
(
e
)
sys
.
exit
(
1
)
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