mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
refactor(CLI): Modern logs for config tabcompletion uninstall command
This commit is contained in:
parent
16a7739411
commit
02eebb4643
@ -174,9 +174,11 @@ class Config {
|
||||
(previousOperation, options) => previousOperation.then(() => uninstall(options)),
|
||||
BbPromise.resolve()
|
||||
)
|
||||
).then(() =>
|
||||
this.serverless.cli.log('Tab autocompletion uninstalled (for all configured shells).')
|
||||
);
|
||||
).then(() => {
|
||||
const message = 'Tab autocompletion uninstalled (for all configured shells).';
|
||||
legacy.log(message);
|
||||
log.notice.success(message);
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user