From 20ce572fef319f91aa7bb80ddbe05471fbf53e44 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Wed, 1 Jul 2020 00:49:58 -0400 Subject: [PATCH] formatting --- src/commands/exec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/exec.ts b/src/commands/exec.ts index d224fe1..bba1640 100644 --- a/src/commands/exec.ts +++ b/src/commands/exec.ts @@ -17,7 +17,7 @@ export default class Exec extends Command { try { if (!args.length) return this.client.commands.get('help').run(message, [this.name]); - const response = await this.loading(message.channel, `***Executing \`${args.join(' ')}\`***`); + const response = await this.loading(message.channel, `\`${args.join(' ')}\``); let result: string; try { result = await this.client.util.exec(args.join(' '), { cwd: '/opt/CloudServices' });