Skip to content

Commit d7c7585

Browse files
committedJul 8, 2024
review comments addressed
1 parent 3d559c9 commit d7c7585

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed
 

‎src/spec-common/injectHeadless.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,9 @@ async function runLifecycleCommand({ lifecycleHook }: ResolverParameters, contai
535535
if (err && (err.code === 130 || err.signal === 2)) { // SIGINT seen on darwin as code === 130, would also make sense as signal === 2.
536536
infoOutput.raw(`\r\n\x1b[1m${lifecycleHookName} interrupted.\x1b[0m\r\n\r\n`);
537537
} else {
538-
infoOutput.write(toErrorText(`${err.cmdOutput}`));
538+
if (err.cmdOutput) {
539+
infoOutput.write(toErrorText(`${err.cmdOutput}`));
540+
}
539541
if (err?.code) {
540542
infoOutput.write(toErrorText(`${lifecycleHookName} failed with exit code ${err.code}. Skipping any further user-provided commands.`));
541543
}

‎src/test/cli.up.test.ts

-7
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,6 @@ describe('Dev Containers CLI', function () {
2525
});
2626

2727
describe('Command up', () => {
28-
it('should succeed (dockerfile) with supported --error for poetry', async () => {
29-
const testFolder = `${__dirname}/configs/dockerfile-with-target`;
30-
const res = await shellExec(`${cli} up --workspace-folder ${testFolder}`);
31-
const response = JSON.parse(res.stdout);
32-
assert.equal(response.outcome, 'success');
33-
});
34-
3528
it('should execute successfully with valid config', async () => {
3629
const res = await shellExec(`${cli} up --workspace-folder ${__dirname}/configs/image`);
3730
const response = JSON.parse(res.stdout);

0 commit comments

Comments
 (0)