mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Only conditionally try to remove completed box
This commit is contained in:
parent
8cb00b289f
commit
883d63f2c3
1 changed files with 4 additions and 1 deletions
|
|
@ -201,5 +201,8 @@ vagrant(['package', '--output', os.path.join('..', boxfile)], serverdir)
|
|||
print "Adding box"
|
||||
vagrant(['box', 'add', 'buildserver', boxfile, '-f'])
|
||||
|
||||
os.remove(boxfile)
|
||||
# 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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue