-
-
Notifications
You must be signed in to change notification settings - Fork 371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GenIdea: Illegal char <:> #3203
Labels
Milestone
Comments
Thanks for the report. Looks like we also need to mask illegal characters in cross values. As a work around, you can skip the --- a/build.sc
+++ b/build.sc
@@ -1987,6 +1987,7 @@ implicit object DepSegment extends Cross.ToSegments[Dep]({ dep =>
*/
object dummy extends Cross[DependencyFetchDummy](dummyDeps)
trait DependencyFetchDummy extends ScalaModule with Cross.Module[Dep] {
+ def skipIdea = true
def scalaVersion = Deps.scalaVersion
def compileIvyDeps = Agg(crossValue)
} |
I'm using Windows 11😂 |
jodersky
pushed a commit
to jodersky/mill
that referenced
this issue
Jan 14, 2025
…Idea on windows (com-lihaoyi#4052) Fixes com-lihaoyi#2161, fixes com-lihaoyi#3203, parts of com-lihaoyi#4050 For now I just merged the two files unchanged except for tweaking the comment to refer to the `Original Project page`. We can continue to evolve the scripts post-merge. We already had a copy in `ci/mill.bat` that I removed, and changed the github actions to point at the top-level version, and integrated the new `mill.bat` into the doc-site download instructions and example zips The changes to the `mill`/`mill.bat` scripts should be covered by the existing integration and bootstrap tests This is enough to make Mill's own codebase importable to IntelliJ on Windows
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug:
:
is not a valid file name on Windows.How to reprodouce.
Checkout mill and run
mill mill.idea.GenIdea/idea
The text was updated successfully, but these errors were encountered: