1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 11:35:35 +03:00
This commit is contained in:
Tae Won Ha 2016-10-14 16:15:38 +02:00
parent 43558527b1
commit bc1cffb748
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -53,4 +53,10 @@ appcast = appcast_template.substitute(
signature=file_signature
)
print(appcast)
appcast_file = open('build/Release/appcast.xml', 'w')
appcast_file.write(appcast)
appcast_file.close()
print('--------------------------------')
print(appcast.strip())
print('--------------------------------')