Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SLUB_SIP_Builder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
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
Digital Preservation
SLUB_SIP_Builder
Compare revisions
2122fd3e9343ee0f77e024ad5be4e0051529b037 to a94f3a015b0af56c8f82cc86863c053ff3b6fab5
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
digital-preservation/SLUB_SIP_Builder
Select target project
No results found
a94f3a015b0af56c8f82cc86863c053ff3b6fab5
Select Git revision
Branches
master
Tags
RC1_v2021.1
RC2_v2021.1
RC3_v2021.1
RC4_v2021.1
RC5_v2021.1
v2020.1
v2021.2
v2021.2.1
9 results
Swap
Target
digital-preservation/SLUB_SIP_Builder
Select target project
digital-preservation/SLUB_SIP_Builder
1 result
2122fd3e9343ee0f77e024ad5be4e0051529b037
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
- fixed exit codes if nothing was wrong
· db11df3a
Andreas Romeyke
authored
1 year ago
db11df3a
Merge branch 'release_candidate_2021.2'
· a94f3a01
Andreas Romeyke
authored
1 year ago
a94f3a01
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/slubsipbuilderbagit.pl
+3
-3
3 additions, 3 deletions
bin/slubsipbuilderbagit.pl
with
3 additions
and
3 deletions
bin/slubsipbuilderbagit.pl
View file @
a94f3a01
...
...
@@ -106,16 +106,16 @@ GetOptions(
"
man
"
=>
\
$man
,
# optional
"
print_sip_version
"
=>
sub
{
say
"
supported sip version is
"
.
SLUB::LZA::SIPBuilderBagIt::
get_sip_version
();
exit
1
;
exit
0
;
},
# optional
"
version
"
=>
sub
{
say
"
version is
"
.
$
SLUB::LZA::SIPBuilderBagIt::
VERSION
;
exit
1
;
exit
0
;
}
)
or
pod2usage
(
2
);
# help
if
(
$help
)
{
pod2usage
(
1
);
exit
1
;
}
if
(
$help
)
{
pod2usage
(
1
);
exit
0
;
}
# man
if
(
$man
)
{
pod2usage
(
-
exitval
=>
0
,
-
verbose
=>
2
);
}
# save
...
...
This diff is collapsed.
Click to expand it.