Skip to content

Commit

Permalink
Resolve base path for versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmig committed Aug 9, 2023
1 parent 18c3f6f commit 1fffb5b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ include: "rules/common.smk"


# Workflow version
__version__ = get_version_str(".")
__version__ = get_version_str(Path(".").resolve())

print(subprocess.check_output("git status").strip().decode("utf-8"))
print(subprocess.check_output("git --version").strip().decode("utf-8"))

# Targets
## Output
Expand Down

0 comments on commit 1fffb5b

Please sign in to comment.