Skip to content

Commit 2ea4c0d

Browse files
Fix two typos in the Makefile
1 parent 7628e63 commit 2ea4c0d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
help: ## Display this help text for Makefile
55
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
66

7-
upgrade: ## Upgrade all dependencies to the latest stable versions
7+
upgrade: ## Upgrade all dependencies to the latest stable versions
88
@uv lock --upgrade
99
@echo "=> Dependencies Updated"
1010

@@ -14,7 +14,7 @@ lint: ## Lint the code
1414
fmt: ## Format the code
1515
@uv run ruff format .
1616

17-
mt-check: ## Runs Ruff format in check mode (no changes)
17+
fmt-check: ## Runs Ruff format in check mode (no changes)
1818
@uv run --no-sync ruff format --check .
1919

2020
type-check: ## Run type-checking
@@ -26,4 +26,4 @@ test: ## Run tests
2626
ci: lint fmt type-check test ## Run everything
2727

2828
app: ## Run the app
29-
@uv run python app.py
29+
@uv run python src/psrt_ghsa_bot/app.py

0 commit comments

Comments
 (0)