Compare commits

..

2 Commits

Author SHA1 Message Date
skullY 5001c627ef New release: 0.0.17 → 0.0.18 2019-11-10 11:11:14 -08:00
Erovia 490c94e282 Fix command line variable access for baseurl and branch 2019-11-10 11:10:49 -08:00
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware."""
__version__ = '0.0.17'
__version__ = '0.0.18'
+2 -2
View File
@@ -29,8 +29,8 @@ def setup(cli):
else:
cli.log.error('qmk_firmware not found!')
if question('Would you like to clone %s?' % cli.args.fork):
git_url = '/'.join((cli.config.general.baseurl, cli.args.fork))
clone(git_url, cli.args.destination, cli.config.general.branch)
git_url = '/'.join((cli.config.setup.baseurl, cli.args.fork))
clone(git_url, cli.args.destination, cli.config.setup.branch)
# Run `qmk_firmware/bin/qmk doctor` to check the rest of the environment out
if qmk_firmware.exists():
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.17
current_version = 0.0.18
commit = True
tag = True
tag_name = {new_version}