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.
lake.lock
1 parent 25e673d commit 216d246Copy full SHA for 216d246
src/lake/Lake/Build/Monad.lean
@@ -94,7 +94,13 @@ where
94
/-- Run the given build function in the Workspace's context. -/
95
@[inline] def Workspace.runBuild (ws : Workspace) (build : BuildM α) (oldMode := false) : LogIO α := do
96
let ctx ← mkBuildContext ws oldMode
97
- --withLockFile ws.lockFile do
+ /-
98
+ TODO:
99
+ The lock file has been temporarily disabled (by lean4#2445)
100
+ until we have an API for catching `Ctrl-C` during a build.
101
+ Absent this, the lock file was too disruptive for users.
102
+ -/
103
+ -- withLockFile ws.lockFile do
104
build.run ctx
105
106
/-- Run the given build function in the Lake monad's workspace. -/
0 commit comments