upgrade wakatime-cli to v6.0.2
This commit is contained in:
parent
3b2520afa9
commit
25ad48a97a
2 changed files with 32 additions and 16 deletions
|
@ -1,7 +1,7 @@
|
||||||
__title__ = 'wakatime'
|
__title__ = 'wakatime'
|
||||||
__description__ = 'Common interface to the WakaTime api.'
|
__description__ = 'Common interface to the WakaTime api.'
|
||||||
__url__ = 'https://github.com/wakatime/wakatime'
|
__url__ = 'https://github.com/wakatime/wakatime'
|
||||||
__version_info__ = ('6', '0', '1')
|
__version_info__ = ('6', '0', '2')
|
||||||
__version__ = '.'.join(__version_info__)
|
__version__ = '.'.join(__version_info__)
|
||||||
__author__ = 'Alan Hamlett'
|
__author__ = 'Alan Hamlett'
|
||||||
__author_email__ = 'alan@wakatime.com'
|
__author_email__ = 'alan@wakatime.com'
|
||||||
|
|
|
@ -62,6 +62,7 @@ class Subversion(BaseProject):
|
||||||
|
|
||||||
def _get_info(self, path):
|
def _get_info(self, path):
|
||||||
info = OrderedDict()
|
info = OrderedDict()
|
||||||
|
if not self._is_mac() or self._has_xcode_tools():
|
||||||
stdout = None
|
stdout = None
|
||||||
try:
|
try:
|
||||||
os.environ['LANG'] = 'en_US'
|
os.environ['LANG'] = 'en_US'
|
||||||
|
@ -97,3 +98,18 @@ class Subversion(BaseProject):
|
||||||
return found
|
return found
|
||||||
return self._find_project_base(split_path[0], found)
|
return self._find_project_base(split_path[0], found)
|
||||||
|
|
||||||
|
def _is_mac(self):
|
||||||
|
return platform.system() == 'Darwin'
|
||||||
|
|
||||||
|
def _has_xcode_tools(self):
|
||||||
|
try:
|
||||||
|
with open(os.devnull, 'wb') as DEVNULL:
|
||||||
|
proc = Popen(['/usr/bin/xcode-select', '-p'], stdout=DEVNULL, stderr=DEVNULL)
|
||||||
|
proc.communicate()
|
||||||
|
retval = proc.wait()
|
||||||
|
if retval == 0:
|
||||||
|
return True
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue