Skip to content

Commit

Permalink
Fix attempt: Master CD missing j2 in .venv
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnicegyu11 committed Dec 5, 2024
1 parent c37a5a6 commit 177e82f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/common.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -233,13 +233,13 @@ clean-default: .check_clean ## Cleans all outputs
ifeq ($(shell test -f j2cli_customization.py && echo -n yes),yes)
define jinja
$(REPO_BASE_DIR)/.venv/bin/j2 --format=env $(1) .env -o $(2) --customize j2cli_customization.py
.venv/bin/j2 --format=env $(1) .env -o $(2) --customize j2cli_customization.py
endef
else
define jinja
$(REPO_BASE_DIR)/.venv/bin/j2 --format=env $(1) .env -o $(2)
.venv/bin/j2 --format=env $(1) .env -o $(2)
endef
endif
Expand Down

0 comments on commit 177e82f

Please sign in to comment.