mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 21:33:13 -07:00
Corrected a mistake that was returning incorrect version info.
This commit is contained in:
parent
ef0dee7840
commit
b8e858cc2f
1 changed files with 5 additions and 2 deletions
|
@ -218,6 +218,7 @@ class GitUpdateManager(UpdateManager):
|
||||||
logger.log(u"Output doesn't look like a hash, not using it", logger.ERROR)
|
logger.log(u"Output doesn't look like a hash, not using it", logger.ERROR)
|
||||||
return False
|
return False
|
||||||
self._cur_commit_hash = cur_commit_hash
|
self._cur_commit_hash = cur_commit_hash
|
||||||
|
nzbtomedia.NZBTOMEDIA_VERSION = self._cur_commit_hash
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
@ -228,8 +229,8 @@ class GitUpdateManager(UpdateManager):
|
||||||
if exit_status == 0 and branch_info:
|
if exit_status == 0 and branch_info:
|
||||||
branch = branch_info.strip().replace('refs/heads/', '', 1)
|
branch = branch_info.strip().replace('refs/heads/', '', 1)
|
||||||
if branch:
|
if branch:
|
||||||
nzbtomedia.NZBTOMEDIA_VERSION = branch
|
nzbtomedia.NZBTOMEDIA_BRANCH = branch
|
||||||
return nzbtomedia.NZBTOMEDIA_VERSION
|
return nzbtomedia.NZBTOMEDIA_BRANCH
|
||||||
|
|
||||||
def _check_github_for_update(self):
|
def _check_github_for_update(self):
|
||||||
"""
|
"""
|
||||||
|
@ -351,6 +352,8 @@ class SourceUpdateManager(UpdateManager):
|
||||||
|
|
||||||
if not self._cur_commit_hash:
|
if not self._cur_commit_hash:
|
||||||
self._cur_commit_hash = None
|
self._cur_commit_hash = None
|
||||||
|
else:
|
||||||
|
nzbtomedia.NZBTOMEDIA_VERSION = self._cur_commit_hash
|
||||||
|
|
||||||
def need_update(self):
|
def need_update(self):
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue