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 99d38d5 commit 233999eCopy full SHA for 233999e
src/bin/commands/build.ts
@@ -388,10 +388,14 @@ export const buildCommand: yargs.CommandModule<
388
`Alias ${alias.namespace}@${alias.alias} updated to: ${templateData.tag}`
389
);
390
process.exit(0);
391
- return;
392
}
393
394
console.log("Template created: " + templateData.tag);
+
395
+ if (argv.ci && failedSandboxes.length > 0) {
396
+ process.exit(1);
397
+ }
398
399
400
} catch (error) {
401
console.error(error);
0 commit comments