We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7867c3a commit 0f4355eCopy full SHA for 0f4355e
1 file changed
src/Fable.Build/Main.fs
@@ -122,6 +122,10 @@ Available commands:
122
let main argv =
123
let argv = argv |> Array.map (fun x -> x.ToLower()) |> Array.toList
124
125
+ // Prevent uv run and uv sync from updating the uv.lock file
126
+ // Updating uv.lock should be done manucally by the user outside of the build system
127
+ System.Environment.SetEnvironmentVariable("UV_FROZEN", "true")
128
+
129
SimpleExec.Command.Run(name = "dotnet", args = "tool restore")
130
SimpleExec.Command.Run(name = "dotnet", args = "husky install --allow-roll-forward")
131
0 commit comments