Fix: prevent make.py from updating uv.lock (#387)#1216
Conversation
Replace the direct usage of ./make.py with uv run --frozen make.py to ensure dependencies remain locked during execution.
❌ Deploy Preview for scrc-coding-guidelines failed.
|
|
@plaindocs, since I removed the shebang Do you prefer to fix this on the Netlify side (by changing the build command), or should we keep the shebang in |
I think we should fix this on the Netlify side, that feels more correct. |
@PLeVasseur, @plaindocs, who can help us with the Netlify fix? It is necessary to replace the calls Also, we need to update the |
|
Netlify is a @PLeVasseur thing afaik. Re updating the spec lock, yes, there are some docs |
|
@JoelMarcey -- could you help us out with the Netlify update? 🙏 @MarcosBorgesPhD, @plaindocs -- could you give the instructions on what needs updating? I see there's already some description up in this comment, but if @JoelMarcey has further questions, support here would be appreciated. |
|
I believe that comment covers it. Happy to try to help if there are questions. It would make it easier for other folks to help if we used a file based Netlify config instead of the Netlify UI. |
In this PR, we removed the shebang from Please replace:
with:
|
Harmonize the way we run
make.pyto be cross-platform and prevent it from updating theuv.lockwhich results in a dirty git repo.Replace the usage:
./make.pyuv run make.pyWith:
uv run --frozen make.pyCloses #387