mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-13 11:32:20 -05:00
Merge pull request #726 from adam111316/fix_zip_2
Second attempt to fix zip updating
This commit is contained in:
commit
76160edce5
@ -577,17 +577,17 @@ class SourceUpdateManager(UpdateManager):
|
|||||||
return ""
|
return ""
|
||||||
|
|
||||||
def need_update(self):
|
def need_update(self):
|
||||||
|
# need this to run first to set self._newest_commit_hash
|
||||||
if self.branch != self._find_installed_branch():
|
|
||||||
logger.log(u"Branch checkout: " + self._find_installed_branch() + "->" + self.branch, logger.DEBUG)
|
|
||||||
return True
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self._check_github_for_update()
|
self._check_github_for_update()
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
logger.log(u"Unable to contact github, can't check for update: " + repr(e), logger.ERROR)
|
logger.log(u"Unable to contact github, can't check for update: " + repr(e), logger.ERROR)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
if self.branch != self._find_installed_branch():
|
||||||
|
logger.log(u"Branch checkout: " + self._find_installed_branch() + "->" + self.branch, logger.DEBUG)
|
||||||
|
return True
|
||||||
|
|
||||||
if not self._cur_commit_hash or self._num_commits_behind > 0:
|
if not self._cur_commit_hash or self._num_commits_behind > 0:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user