@getmonoceros/workbench 1.11.6 → 1.11.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.js +4 -2
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -3966,7 +3966,6 @@ var spawnDocker = (args) => {
|
|
|
3966
3966
|
child.stderr?.on("data", (chunk) => {
|
|
3967
3967
|
stderr += chunk.toString("utf8");
|
|
3968
3968
|
});
|
|
3969
|
-
child.stderr?.pipe(createSecretMaskStream()).pipe(process.stderr);
|
|
3970
3969
|
child.on("error", reject);
|
|
3971
3970
|
child.on(
|
|
3972
3971
|
"exit",
|
|
@@ -3996,6 +3995,9 @@ async function cleanupDockerObjects(opts) {
|
|
|
3996
3995
|
opts.logger.info(`[${tag}] removing containers: ${ids.join(" ")}`);
|
|
3997
3996
|
const rmResult = await exec(["rm", "-f", ...ids]);
|
|
3998
3997
|
rmExit = rmResult.exitCode;
|
|
3998
|
+
if (rmExit !== 0 && rmResult.stderr.trim()) {
|
|
3999
|
+
opts.logger.info(`[${tag}] ${rmResult.stderr.trim()}`);
|
|
4000
|
+
}
|
|
3999
4001
|
} else {
|
|
4000
4002
|
opts.logger.info(`[${tag}] no containers found`);
|
|
4001
4003
|
}
|
|
@@ -4756,7 +4758,7 @@ async function persistPromptedIdentity(prompted, ymlPath, home, logger) {
|
|
|
4756
4758
|
}
|
|
4757
4759
|
|
|
4758
4760
|
// src/version.ts
|
|
4759
|
-
var CLI_VERSION = true ? "1.11.
|
|
4761
|
+
var CLI_VERSION = true ? "1.11.7" : "dev";
|
|
4760
4762
|
|
|
4761
4763
|
// src/commands/_dispatch.ts
|
|
4762
4764
|
import { consola as consola12 } from "consola";
|