Skip to content

Commit

Permalink
build: make targets should use underscores not dashes
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Feb 21, 2024
1 parent f7d40a0 commit a1d8d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ PIP_COMPILE = pip-compile ${COMPILE_OPTS} --allow-unsafe --resolver=backtracking
upgrade: ## Update the *.pip files with the latest packages satisfying *.in files.
$(MAKE) _upgrade COMPILE_OPTS="--upgrade"

upgrade-one: ## Update the *.pip files for one package. `make upgrade-one package=...`
upgrade_one: ## Update the *.pip files for one package. `make upgrade-one package=...`
@test -n "$(package)" || { echo "\nUsage: make upgrade-one package=...\n"; exit 1; }
$(MAKE) _upgrade COMPILE_OPTS="--upgrade-package $(package)"

Expand Down

0 comments on commit a1d8d29

Please sign in to comment.