We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52cdaca commit b6237efCopy full SHA for b6237ef
1 file changed
workflow/rules/common.smk
@@ -30,7 +30,8 @@ def get_repo_version(base_dir: str, default: str, warn=False) -> str:
30
try:
31
last_tag_description = subprocess.check_output(
32
f"git --git-dir={base_dir}/.git describe --always",
33
- shell=True
+ shell=True,
34
+ stderr=subprocess.DEVNULL
35
).strip().decode("utf-8")
36
if last_tag_description.startswith("v"):
37
if last_tag_description[1:] == default:
0 commit comments