ubuntu-cpc: use sys.exit() rather than quit()

u-i-cloud-init
Robert C Jennings 6 years ago
parent 5083d76835
commit 0afb887cb7
No known key found for this signature in database
GPG Key ID: 740C3D9EEDF2ED73

@ -8,6 +8,7 @@ script. If the file is empty, all output will be saved.
"""
import glob
import os
import sys
if __name__ == "__main__":
print('Running {}'.format(__file__))
@ -21,7 +22,7 @@ if __name__ == "__main__":
if not explicit:
print('{}: explicit_provides is empty. '
'All binary output will be included'.format(scriptname))
quit()
sys.exit(0)
all = set(glob.glob('livecd.ubuntu-cpc.*'))
implicit = all - explicit

Loading…
Cancel
Save