We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 278f925 commit d967648Copy full SHA for d967648
1 file changed
Makefile
@@ -43,9 +43,11 @@ endif
43
44
# If the project configuration file has been updated (package deps or
45
# otherwise) then warn the user and suggest resolving the conflict.
46
-ifeq ($(shell test pyproject.toml -nt .venv/upgraded-on; echo $$?),0)
47
- $(warning pyproject.toml was updated, consider `make upgrade` if your packages have changed)
48
- $(warning If this is not correct then run `make upgrade-quiet`)
+ifneq ($(wildcard .venv/upgraded-on),)
+ ifeq ($(shell test pyproject.toml -nt .venv/upgraded-on; echo $$?),0)
+ $(warning pyproject.toml was updated, consider `make upgrade` if your packages have changed)
49
+ $(warning If this is not correct then run `make upgrade-quiet`)
50
+ endif
51
endif
52
53
# The SOURCE_DATE_EPOCH environment variable allows the `flit` tool to
0 commit comments