Toolkit: Deprecate plugin:update-circleci command (#57743)

This commit is contained in:
Esteban Beltran 2022-10-27 15:05:32 +02:00 committed by GitHub
parent 998093a280
commit 91ee5fec14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -247,6 +247,9 @@ export const run = (includeInternalScripts = false) => {
.command('plugin:update-circleci')
.description('Update plugin')
.action(async (cmd) => {
chalk.yellow.bold(
`⚠️ This command is deprecated and will be removed in v10. No further support will be provided. ⚠️`
);
await execTask(pluginUpdateTask)({});
});