Gunnar Wagenknecht

Results 107 comments of Gunnar Wagenknecht

@diacone Are you open to share your patch? I'm in a similar spot trying to fetch from a password protected Nexus.

Thanks a lot @diacone. Just to confirm, this diff is for the "runtime" build part, i.e. when Bazel is downloading dependencies? It does not deal with the "resolution" part, i.e....

@johnynek Thanks! I'm certainly interested in providing a patch. I'm converting a fairly large legacy project. So far I'm running into resolution issue with Coursier and trying Aether now. Prompting...

FYI: Bazel `respository_ctx.download` currently doesn't support auth. https://github.com/bazelbuild/bazel/issues/7469

FWIW, the issue became less pressing for us since we started using https://github.com/salesforce/bazel-maven-proxy/

Oh, so I read the documentation wrong. Sorry about that. When reading https://github.com/kvz/bash3boilerplate/blob/986fec809095d5df2d71c08262ab9a705ec373f2/main.sh#L136 I assumed it would work in the default.

@Yes, I was thinking about such an abstraction as I noticed similar one for output. However, they do add complexity. They are hiding just the console side of things. That...

I see. Let me describe the issue I see with the `write(ConsoleWriter)` and `read(ConsoleReader)` methods. The API for zt-exec looks like this: ``` new ProcessExecutor().command("..", "...") .redirectOutputAlsoTo(outputStream) .redirectErrorAlsoTo(errorOutputStream) .redirectInput(inputStream) .execute();...

Instead of a data prompt, #70 would give commands the opportunity to grab the input and read anything they want out of it.

Is there a way to run Bazelisk offline? We also install Bazelisk as default `bazel` on our developer machines.