mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03: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
c0987b6803
commit
c31b0ccf2e
1 changed files with 5 additions and 6 deletions
|
|
@ -209,12 +209,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…
Add table
Add a link
Reference in a new issue