Hi all! I'm aware that I can do `PANTS_SHA=8553e8c...
# general
a
Hi all! I'm aware that I can do
PANTS_SHA=8553e8cbc5a1d9da3f84dcfc5e7bf3139847fb5f pants --version
to run a non-release version of Pants. Is there a way to set this in
pants.toml
? There's a couple of bugs that I'm working around that have been fixed and cherry-picked to
2.15.x
.
1
r
You can use
.pants.bootstrap
to set it. It’s sourced during bootstrapping https://github.com/pantsbuild/pants/blob/main/pants#L15
a
That worked perfectly, thank you!