Martin Mauch

Results 403 comments of Martin Mauch

@Igosuki could you post a full example? I'm just running into the same problem and I can't seem to figure it out... Or anybody else with a workaround for that...

Unfortunately not... I converted the problematic code to pure Http4s and left the rest in Rho.

@prolativ I hadn't seen your `iskra-next` branch. I'll have a look at that. Basically the Array-exploding and StructType expansion using `.*` is what I'm currently missing to write a PoC...

Amy pointers to how this could be implemented? If I find the time, I would give it a try.

@prolativ does that still apply for the `iskra-next` branch? And would the `.*` selection be similar or need a different approach? Thank you!

> Actually `.*` did work for some time but keeping it alive slowed me down too much when I was experimenting with other stuff so I removed support for it...

Something like this could be used to track the exponents of the used dimensions on a type level: https://gist.github.com/non/8396462

The [line causing the error](https://github.com/sbt/sbt-assembly/blob/develop/src/main/scala/sbtassembly/Assembly.scala#L533) is ```scala jarFileSystemResource(URI.create(s"jar:file:${output.toPath.toString}")) { jarFS => ``` A [similar error in scala/jardiff](https://github.com/scala/jardiff/pull/48/files#diff-a73dd14f55f41fd91a5223fd875eccf253c2f3db1b5d631f0bb9eade29c98138L16) was fixed by replacing ```scala val uri = URI.create("jar:file:" + fileOrZip.toUri.getPath) ``` by...

@eed3si9n the PR for the 1.x branch only has two errors. In the [`merging / merging` test](https://github.com/sbt/sbt-assembly/runs/7038135040?check_suite_focus=true#step:5:505) there are additional unexpected newlines. In [`sbt-assembly / piecemeal`](https://github.com/sbt/sbt-assembly/runs/7038135040?check_suite_focus=true#step:5:751) there's a `java.lang.ClassNotFoundException: Main`,...

@fnqista yes, the two errors I mentioned above are unrelated to the `Illegal character` issue that I actually wanted to expose. Unfortunately I don't have much time left to dig...