From a14e4eb6cfb5500d7eed74ac11e82de15cd1463b Mon Sep 17 00:00:00 2001 From: Bsian Date: Mon, 30 Dec 2019 17:00:48 +0000 Subject: [PATCH] And typo --- src/commands/cwg_updatecert.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/cwg_updatecert.ts b/src/commands/cwg_updatecert.ts index fca080c..05ec502 100644 --- a/src/commands/cwg_updatecert.ts +++ b/src/commands/cwg_updatecert.ts @@ -35,7 +35,7 @@ export default class CWG_UpdateCert extends Command { const writeTasks = [writeFile(cert, certAndPrivateKey[0], { encoding: 'utf8' }), writeFile(key, certAndPrivateKey[1], { encoding: 'utf8' })]; await Promise.all(writeTasks); - return message.channel.createMessage(`${this.client.stores.emojis.success} ***Updated certificate certificate for ${domain} on port ${port}***`); + return message.channel.createMessage(`${this.client.stores.emojis.success} ***Updated certificate for ${domain} on port ${port}***`); } catch (error) { return this.client.util.handleError(error, message, this); }