aboutsummaryrefslogtreecommitdiff
path: root/src/commands/info
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-19 03:11:53 +0000
committergithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-19 03:11:53 +0000
commit595f1ee54426aeb579ed20da4305d9dcf42c05b9 (patch)
tree6c81ea6d2421b5b86300b823658e7c6571ea1abd /src/commands/info
parentc486d655de34c0827ef2614733af289be5139bc3 (diff)
downloadtanzanite-595f1ee54426aeb579ed20da4305d9dcf42c05b9.tar.gz
tanzanite-595f1ee54426aeb579ed20da4305d9dcf42c05b9.tar.bz2
tanzanite-595f1ee54426aeb579ed20da4305d9dcf42c05b9.zip
Automatically format code
Diffstat (limited to 'src/commands/info')
-rw-r--r--src/commands/info/botInfo.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/info/botInfo.ts b/src/commands/info/botInfo.ts
index 2add1ac..9d8ab4c 100644
--- a/src/commands/info/botInfo.ts
+++ b/src/commands/info/botInfo.ts
@@ -21,7 +21,7 @@ export default class BotInfoCommand extends BushCommand {
const developers = (await this.client.util.mapIDs(this.client.config.owners)).map((u) => u?.tag).join('\n');
const currentCommit = (await this.client.util.shell('git rev-parse HEAD')).stdout.replace('\n', '');
let repoUrl = (await this.client.util.shell('git remote get-url origin')).stdout.replace('\n', '');
- repoUrl = repoUrl.substring(0, repoUrl.length-4)
+ repoUrl = repoUrl.substring(0, repoUrl.length - 4);
const embed = new MessageEmbed()
.setTitle('Bot Info:')
.addField('**Uptime**', this.client.util.humanizeDuration(this.client.uptime), true)