diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-19 16:48:22 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-19 16:48:22 -0400 |
commit | b023e057083f002418d2a685dbfb17faa624b6b1 (patch) | |
tree | 97ee218128ad39e4a4f40eb35152aa38084f99e4 /src/commands/info | |
parent | d29be9345dedefa08e7ae4073cd07c5ac9a661d4 (diff) | |
parent | 595f1ee54426aeb579ed20da4305d9dcf42c05b9 (diff) | |
download | tanzanite-b023e057083f002418d2a685dbfb17faa624b6b1.tar.gz tanzanite-b023e057083f002418d2a685dbfb17faa624b6b1.tar.bz2 tanzanite-b023e057083f002418d2a685dbfb17faa624b6b1.zip |
Merge branch 'rewrite' of https://github.com/NotEnoughUpdates/bush-bot into rewrite
Diffstat (limited to 'src/commands/info')
-rw-r--r-- | src/commands/info/botInfo.ts | 2 |
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) |