forked from distok/cutthecord
branding: start custom version numbers from 1000 so that we won't have
issues current issue: - 8.3.5 is 83512 - 8.3.6 is 8361 that's not okay, and it's failing to distribute updates.
This commit is contained in:
parent
82a88a3da5
commit
3f12f86cd9
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ def counterup(branch="base"):
|
||||||
with open(cfname, 'r') as file:
|
with open(cfname, 'r') as file:
|
||||||
countdata = file.read()
|
countdata = file.read()
|
||||||
else:
|
else:
|
||||||
countdata = 0
|
countdata = 1000
|
||||||
|
|
||||||
countdata = int(countdata) + 1
|
countdata = int(countdata) + 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue