Naftoli Gugenheim

Results 587 comments of Naftoli Gugenheim

Can you post the full stack trace please?

Hmm, I don't think I actually tested it on Windows. Can you try changing https://github.com/nafg/gitlab-ci-runner-scala/blob/a5bf6a08f35965fcbe09070c5ee8cb8bca712a1d/src/main/scala/gitlab_ci_runner/runner/Build.scala#L78 to say `"cmd.exe"` rather than just `"cmd"` please? Thanks.

Yeah, I'm suspecting it's "cmd" that can't be found. On Wed, Feb 4, 2015 at 1:33 AM, Johannes Rudolph [email protected] wrote: > Ok i will try it on friday. >...

Please try changing `cmd` to `cmd.exe`. Are you running the release jar or building from source yourself?

Can someone merge and release this?

Can someone explain to me why case-insensitive sort is better? Strings are almost always sorted this way.

Maybe instead of sorting by the name as a single word, it should sort by words, case-insensitive. Something like: def symbolToWords(sym: String): Seq[String] = ... symbols.sortBy(symbolToWords)(Ordering.Iterable(Ordering.comparatorToOrdering(String.CASE_INSENSITIVE_ORDER))) On Tue, Sep 15,...

I guess this boils down to sbt changes? This could be fixed by adding a project/build.properties file with sbt.version=xxx

Exactly. Maybe an even better idea is to make a standalone API that's not tied to SBT (so could be used with Mill or other coursier-based tools), layer on top...