We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 468a915 commit 5bde1a2Copy full SHA for 5bde1a2
1 file changed
Makefile
@@ -23,7 +23,11 @@ test:
23
PYTHONPATH=. $(VENV_DIR)/bin/pytest
24
25
run_macos:
26
- cd macos && swift package clean && swift build && swift run
+ @if [ ! -d "$(VENV_DIR)" ]; then \
27
+ echo "Virtual environment not found. Installing dependencies..."; \
28
+ $(MAKE) install; \
29
+ fi
30
+ cd macos && swift build && swift run
31
32
clean:
33
rm -rf $(VENV_DIR)
0 commit comments