Skip to content

Commit b935225

Browse files
committed
fix location of set -e
1 parent 321eb50 commit b935225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ venv:
5757

5858
.PHONY: ensure-venv
5959
ensure-venv:
60-
set -e;
6160
@if [ ! -d $(VENVDIR) ] ; then \
61+
set -e; \
6262
echo "Creating venv in $(VENVDIR)"; \
6363
if $(UV) --version >/dev/null 2>&1; then \
6464
$(UV) venv --python=$(PYTHON) $(VENVDIR); \

0 commit comments

Comments
 (0)