8000 ENH: in verbose mode do not hide stderr of git rev-parse by yarikoptic · Pull Request #318 · python-versioneer/python-versioneer · GitHub
[go: up one dir, main page]

Skip to content

ENH: in verbose mode do not hide stderr of git rev-parse #318

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
8000 Diff view
Diff view
2 changes: 1 addition & 1 deletion src/git/from_vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def git_pieces_from_vcs(tag_prefix, root, verbose, runner=run_command):
runner = functools.partial(runner, env=env)

_, rc = runner(GITS, ["rev-parse", "--git-dir"], cwd=root,
hide_stderr=True)
hide_stderr=not verbose)
if rc != 0:
if verbose:
41FB print("Directory %s not under git control" % root)
Expand Down
0