All checks were successful
check / check (push) Successful in 14s
Two defects in the lint-once resolver's make variable handling: - The assignment pattern anchored at the start of the name, so `export FMT := script/fmt-check` was never collected and `@$(FMT)` went unresolved. An optional `export `/`override ` prefix is now allowed. - `?=` assigns only when the name is unset, so the first assignment wins. The parser called .set() unconditionally, letting a later `FMT ?= script/build` overwrite an earlier `FMT := script/fmt-check` and resolve to a command make never runs. Tests pinning both to follow.
40 KiB
40 KiB