Skip to content
Snippets Groups Projects
Commit 7e2324d4 authored by Matthias Bernien's avatar Matthias Bernien
Browse files

no cert flag

parent 72b7010e
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,11 @@ def main(): ...@@ -52,6 +52,11 @@ def main():
else: else:
show = False show = False
if '--nocert' in args:
nocert = True
else:
nocert = False
if '--dcc' in args: if '--dcc' in args:
dcc = True dcc = True
else: else:
...@@ -123,8 +128,9 @@ def main(): ...@@ -123,8 +128,9 @@ def main():
print("The files are dumped in {tmp}!".format(tmp=tmp_folder)) print("The files are dumped in {tmp}!".format(tmp=tmp_folder))
print("\n") print("\n")
print("\n") print("\n")
ret = subprocess.getoutput(cmd_cert_doc) if not nocert:
print("✓ cert document generated") ret = subprocess.getoutput(cmd_cert_doc)
print("✓ cert document generated")
ret = subprocess.getoutput(cmd_tex_file) ret = subprocess.getoutput(cmd_tex_file)
print("✓ LaTeX file generated") print("✓ LaTeX file generated")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment