8000 oops, "GITS" != "GITs" · drinkingjava/python-versioneer@206e2b0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 206e2b0

Browse files
committed
oops, "GITS" != "GITs"
1 parent a0bf4e2 commit 206e2b0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/git/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def os_path_relpath(path, start=os.path.curdir):
2020
return os.path.join(*rel_list)
2121

2222
def do_vcs_install(versionfile_source, ipy):
23-
GITs = ["git"]
23+
GITS = ["git"]
2424
if sys.platform == "win32":
2525
GITS = ["git.cmd", "git.exe"]
2626
files = [versionfile_source, ipy]

src/git/middle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def versions_from_vcs(tag_prefix, root, verbose=False):
7474
print("no .git in %s" % root)
7575
return {}
7676

77-
GITs = ["git"]
77+
GITS = ["git"]
7878
if sys.platform == "win32":
7979
GITS = ["git.cmd", "git.exe"]
8080
stdout = run_command(GITS, ["describe", "--tags", "--dirty", "--always"],

versioneer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def versions_from_vcs(tag_prefix, root, verbose=False):
220220
print("no .git in %%s" %% root)
221221
return {}
222222
223-
GITs = ["git"]
223+
GITS = ["git"]
224224
if sys.platform == "win32":
225225
GITS = ["git.cmd", "git.exe"]
226226
stdout = run_command(GITS, ["describe", "--tags", "--dirty", "--always"],
@@ -396,7 +396,7 @@ def versions_from_vcs(tag_prefix, root, verbose=False):
396396
print("no .git in %s" % root)
397397
return {}
398398

399-
GITs = ["git"]
399+
GITS = ["git"]
400400
if sys.platform == "win32":
401401
GITS = ["git.cmd", "git.exe"]
402402
stdout = run_command(GITS, ["describe", "--tags", "--dirty", "--always"],
@@ -449,7 +449,7 @@ def os_path_relpath(path, start=os.path.curdir):
449449
return os.path.join(*rel_list)
450450

451451
def do_vcs_install(versionfile_source, ipy):
452-
GITs = ["git"]
452+
GITS = ["git"]
453453
if sys.platform == "win32":
454454
GITS = ["git.cmd", "git.exe"]
455455
files = [versionfile_source, ipy]

0 commit comments

Comments
 (0)
0