Skip to content

Commit

Permalink
fix bug that causes ccp to fail if github actions = n and codevoc = n (
Browse files Browse the repository at this point in the history
…#68)

* fix bug that causes ccp to fail if github actions = n and codevoc = n
  • Loading branch information
fpgmaas authored Dec 7, 2022
1 parent da5b527 commit 40f256b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ def remove_dir(filepath: str) -> None:

if "{{cookiecutter.codecov}}" != "y":
remove_file("codecov.yaml")
remove_file(".github/workflows/validate-codecov-config.yml")
if "{{cookiecutter.include_github_actions}}" == "y":
remove_file(".github/workflows/validate-codecov-config.yml")

0 comments on commit 40f256b

Please sign in to comment.