mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 00:40:11 +01:00
Better makebuildserver verbose output
(and always delete box file, its always there, despite my earlier commit saying it wasn't)
This commit is contained in:
parent
cd23bb933c
commit
b67e012dd5
@ -197,12 +197,11 @@ while not ready:
|
||||
print "Status: " + line
|
||||
|
||||
print "Packaging"
|
||||
vagrant(['package', '--output', os.path.join('..', boxfile)], serverdir)
|
||||
vagrant(['package', '--output', os.path.join('..', boxfile)], serverdir,
|
||||
printout=options.verbose)
|
||||
print "Adding box"
|
||||
vagrant(['box', 'add', 'buildserver', boxfile, '-f'])
|
||||
vagrant(['box', 'add', 'buildserver', boxfile, '-f'],
|
||||
printout=options.verbose)
|
||||
|
||||
# Remove box file if it exists (older vagrant versions left it there, newer
|
||||
# ones seem to delete it
|
||||
if os.path.exists(boxfile):
|
||||
os.remove(boxfile)
|
||||
os.remove(boxfile)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user