1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

no need for dash separator

This commit is contained in:
gorhill 2015-08-12 16:34:33 -04:00
parent 176f518d65
commit 5a8079940c

View File

@ -76,7 +76,7 @@ with open(chromium_manifest, encoding='utf-8') as m:
# https://developer.mozilla.org/en-US/Add-ons/AMO/Policy/Maintenance#How_do_I_submit_a_Beta_add-on.3F
# "To create a beta channel [...] '(a|alpha|b|beta|pre|rc)\d*$' "
if sys.argv[2]:
manifest['version'] += '-' + sys.argv[2]
manifest['version'] += sys.argv[2]
manifest['homepage'] = 'https://github.com/gorhill/uBlock'
manifest['description'] = descriptions['en']