Skip to content

Commit

Permalink
fix: proper error message in case of missing git when checking for so…
Browse files Browse the repository at this point in the history
…urce files (#1534)
  • Loading branch information
johanneskoester committed Mar 30, 2022
1 parent 20f072f commit 92887a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion snakemake/workflow.py
Expand Up @@ -392,7 +392,8 @@ def norm_rule_relpath(f, rule):
)
else:
raise WorkflowError(
"Error executing git:\n{}".format(e.stderr.decode())
"Error executing git (Snakemake requires git to be installed for "
"remote execution without shared filesystem):\n" + e.stderr.decode()
)

return files
Expand Down

0 comments on commit 92887a3

Please sign in to comment.