-
-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't leak runtime cli imports into generated build scripts (#2978)
Since the cli option `--import` is supposed to affect only the runtime classpath, there is no need to persist it's value in the generated scripts. Instead, we hold it in a `DynamicVariable` at script evaluation time. Pull request: #2978
- Loading branch information
Showing
3 changed files
with
29 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package mill.runner | ||
|
||
import scala.util.DynamicVariable | ||
|
||
/** | ||
* Hold additional runtime dependencies given via the `--import` cli option. | ||
*/ | ||
private[runner] object CliImports extends DynamicVariable[Seq[String]](Seq.empty) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters