Andrew Richards
Andrew Richards
Same problem. This appears to be a Monterey (12.1) issue. It was working fine just before the upgrade. There are a lot of reports on the Zerotier issues list: https://github.com/zerotier/ZeroTierOne/issues/1523
I've seen something like this when running tests. My was complaining that a file in the `out/` director already exists ie ``` java.nio.file.FileAlreadyExistsException: /Users/ajr/dev/proj/out/proj/test/test.dest/out.json at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:94) at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111) ``` I...
I'm pretty sure it's Ctrl-C related and when using `-w` If I run: ```scala package milltest object MillTest extends App { var i = 0 val pid = ProcessHandle.current().pid() val...
What OS are you on? I get these problems on MacOS but that's the only place I run mill interactively
There definitely seems to be some sort of miscommunication from the server to the client regarding termination. For example if you write a program: ```scala object MillTest extends App {...
I have just come across a similar problem. I'd see stuff like: com.google.protobuf:protobuf-parent:3.7.0 checksum not found: /builds/development/scala-common/.cache/coursier/v1/http/artifactory.trackabus.int/artifactory/trackabus/com/google/protobuf/protobuf-parent/3.7.0/protobuf-parent-3.7.0.pom serverlib[2.13.8].scalaCompilerClasspath Failed to load source dependencies concurrent download: http://artifactory.trackabus.int/artifactory/trackabus/org/scala-lang/scala-compiler/2.13.8/scala-compiler-2.13.8.jar serverlib[2.13.8].test.scalaCompilerClasspath Failed to load...
This happens because mill prepends a shell script to the assembly jar which means it is executable. Ie you can run `./out.jar` to start the program. If you run `less...
Thanks! That works (kinda) I imported the module into my NgModule file import sjsx from './common/sjsx.js' referenced it so webpack doesn't strip it out: export class AppModule { sjsx =...
Thanks for your reply. I am new to the project and naively would expect that the different backends functioned more or less the same with respect to usage. I understand...