We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
__
_
build.sc
import mill._ import mill.scalalib._ import $ivy.`com.lihaoyi::mill-contrib-docker:$MILL_VERSION` import contrib.docker.DockerModule object project extends ScalaModule with DockerModule { def scalaVersion = "2.13.10" object docker extends DockerConfig def push( environment: String, bypassOverrideOwnerCheck: Boolean = false, onlyIfChanged: Boolean = false ) = T.command(println("toto")) }
.mill-version
0.10.15
The following commands work:
./mill __.push --environment prod # prints toto
./mill __.push # pushes the docker image
But if .mill-version:
0.11.0
Then it does not work:
./mill __.push --environment jdsnc [build.sc] [44/49] cliImports Unknown arguments: "--environment" "jdsnc" Expected Signature: push
./mill __.push Missing argument: --environment <str> Expected Signature: push --bypassOverrideOwnerCheck <bool> --environment <str> --onlyIfChanged <bool>
Potential culprid: #2511
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
build.sc
.mill-version
The following commands work:
But if .mill-version:
Then it does not work:
Potential culprid: #2511
Thanks
The text was updated successfully, but these errors were encountered: