Issue #71: Setup issue on Mac OSX
Reported by: | Jason Zavaglia |
State: | resolved |
Created on: | 2015-01-09 14:37 |
Updated on: | 2015-01-21 16:45 |
Description
The version for git on my system returns:
'git version 1.9.3 (Apple Git-50)'
check_git_version() in kallithea/lib/utils.py barfs on this, as it expects the X.X.X to be the final word in the sentence.
One simple remedy is to use a regexp such as
re.search("\d+.\d+.\d+", ver).group(0)
This bug prevents the setup of Kallithea to complete, on my OS X machine at least. I have Github Mac client installed, and I am running Yosemite.
Attachments
Comments
Comment by Jason Zavaglia, on 2015-01-09 14:38
Comment by Mads Kiilerich, on 2015-01-21 16:45
fixed