Skip to content
Snippets Groups Projects
Commit 445ccfc4 authored by Thomas Strebler's avatar Thomas Strebler
Browse files

Add option to skip tag creation

parent 79510312
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,11 @@ def main():
action="store_true",
help="Don't submit the jobs, just create the tarball",
)
parser.add_argument(
"--noTag",
action="store_true",
help="Skip git tag creation",
)
args = parser.parse_args()
......@@ -73,7 +78,7 @@ def main():
campaign = datetime.datetime.now().strftime(args.campaign)
if not args.noSubmit:
if not args.noSubmit and not args.noTag:
create_git_tag(campaign)
# Prepare some of the prun options here
......
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