Skip to content

Commit fcb653a

Browse files
authored
more verbosity?
1 parent 565a7cc commit fcb653a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

versioneer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command):
649649
GITS = ["git.cmd", "git.exe"]
650650
651651
out, rc = run_command(GITS, ["rev-parse", "--git-dir"], cwd=root,
652-
hide_stderr=True)
652+
hide_stderr=False)
653653
if rc != 0:
654654
if verbose:
655655
print("Directory %%s not under git control" %% root)
@@ -1054,7 +1054,7 @@ def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command):
10541054
if sys.platform == "win32":
10551055
GITS = ["git.cmd", "git.exe"]
10561056

1057-
out, rc = run_command(GITS, ["rev-parse", "--git-dir"], cwd=root, hide_stderr=True)
1057+
out, rc = run_command(GITS, ["rev-parse", "--git-dir"], cwd=root, hide_stderr=False)
10581058
if rc != 0:
10591059
if verbose:
10601060
print("Directory %s not under git control" % root)

0 commit comments

Comments
 (0)