Skip to content

Commit 7126bba

Browse files
committed
Update mcpgateway.wrapper docs fix Makefile
Signed-off-by: Mihai Criveti <[email protected]>
1 parent 820379b commit 7126bba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -777,15 +777,15 @@ containerfile-update:
777777
.PHONY: dist wheel sdist verify publish
778778

779779
dist: clean ## Build wheel + sdist
780-
@/bin/bash -c "source $(VENV_DIR)/bin/activate && python3 -m build"
780+
python3 -m build
781781
@echo "🛠 Wheel & sdist written to ./dist"
782782

783783
wheel: ## Build wheel only
784-
@/bin/bash -c "source $(VENV_DIR)/bin/activate && python3 -m build -w"
784+
python3 -m build -w
785785
@echo "🛠 Wheel written to ./dist"
786786

787787
sdist: ## Build source distribution only
788-
@/bin/bash -c "source $(VENV_DIR)/bin/activate && python3 -m build -s"
788+
python3 -m build -s
789789
@echo "🛠 Source distribution written to ./dist"
790790

791791
verify: dist ## Build, run metadata & manifest checks

0 commit comments

Comments
 (0)