diff options
| author | Tomás Touceda <chiiph@leap.se> | 2013-12-06 16:44:32 -0300 | 
|---|---|---|
| committer | Tomás Touceda <chiiph@leap.se> | 2013-12-06 16:44:32 -0300 | 
| commit | 496036f15cf257d16b6594770812da64a249280c (patch) | |
| tree | 3f3e13d86df06613eca22884f02c3bdb0b4e266e /versioneer.py | |
| parent | d51d6bedfecd41491f2c8243235e7d3db043a4d7 (diff) | |
| parent | 5e18d4e5459595f369d94d0d5b3a280348370ebe (diff) | |
Merge branch 'release-0.3.8'
Diffstat (limited to 'versioneer.py')
| -rw-r--r-- | versioneer.py | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/versioneer.py b/versioneer.py index 34e48073..885ebcfd 100644 --- a/versioneer.py +++ b/versioneer.py @@ -230,7 +230,7 @@ def versions_from_vcs(tag_prefix, versionfile_source, verbose=False):      GIT = "git"      if sys.platform == "win32": -        GIT = "git.cmd" +        GIT = "git.exe"      stdout = run_command([GIT, "describe", "--tags", "--dirty", "--always"],                           cwd=root)      if stdout is None: @@ -420,7 +420,7 @@ def versions_from_vcs(tag_prefix, versionfile_source, verbose=False):      GIT = "git"      if sys.platform == "win32": -        GIT = "git.cmd" +        GIT = "git.exe"      stdout = run_command([GIT, "describe", "--tags", "--dirty", "--always"],                           cwd=root)      if stdout is None: @@ -476,7 +476,7 @@ import sys  def do_vcs_install(versionfile_source, ipy):      GIT = "git"      if sys.platform == "win32": -        GIT = "git.cmd" +        GIT = "git.exe"      run_command([GIT, "add", "versioneer.py"])      run_command([GIT, "add", versionfile_source])      run_command([GIT, "add", ipy]) @@ -489,13 +489,13 @@ def do_vcs_install(versionfile_source, ipy):                      present = True          f.close()      except EnvironmentError: -        pass     +        pass      if not present:          f = open(".gitattributes", "a+")          f.write("%s export-subst\n" % versionfile_source)          f.close()          run_command([GIT, "add", ".gitattributes"]) -     +  SHORT_VERSION_PY = """  # This file was generated by 'versioneer.py' (0.7+) from | 
