We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dc6e30 commit 2bdf98bCopy full SHA for 2bdf98b
core/deployment/src/main/java/io/quarkus/deployment/util/ContainerRuntimeUtil.java
@@ -195,6 +195,7 @@ private static ContainerRuntime fullyResolveContainerRuntime(ContainerRuntime co
195
196
return containerRuntimeEnvironment;
197
})
198
+ .error().logOnSuccess(false)
199
.run();
200
} catch (Exception e) {
201
if (!silent) {
@@ -238,6 +239,7 @@ private static String getVersionOutputFor(ContainerRuntime containerRuntime) {
238
239
return ProcessBuilder.newBuilder(execPath.get())
240
.arguments("--version")
241
.output().gatherOnFail(true).toSingleString(16384)
242
243
244
} catch (Throwable t) {
245
// If an exception is thrown in the process, just return an empty String
0 commit comments