Skip to content

Commit 177e82f

Browse files
committed
Fix attempt: Master CD missing j2 in .venv
1 parent c37a5a6 commit 177e82f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/common.Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,13 +233,13 @@ clean-default: .check_clean ## Cleans all outputs
233233
ifeq ($(shell test -f j2cli_customization.py && echo -n yes),yes)
234234
235235
define jinja
236-
$(REPO_BASE_DIR)/.venv/bin/j2 --format=env $(1) .env -o $(2) --customize j2cli_customization.py
236+
.venv/bin/j2 --format=env $(1) .env -o $(2) --customize j2cli_customization.py
237237
endef
238238
239239
else
240240
241241
define jinja
242-
$(REPO_BASE_DIR)/.venv/bin/j2 --format=env $(1) .env -o $(2)
242+
.venv/bin/j2 --format=env $(1) .env -o $(2)
243243
endef
244244
245245
endif

0 commit comments

Comments
 (0)