From 297218abdf560d7cc30c2565227e6d366010584d Mon Sep 17 00:00:00 2001 From: Bsian Date: Wed, 30 Oct 2019 20:42:03 +0000 Subject: [PATCH] Fix newline --- src/commands/pull.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/pull.ts b/src/commands/pull.ts index f6981e3..4686365 100644 --- a/src/commands/pull.ts +++ b/src/commands/pull.ts @@ -25,7 +25,7 @@ export default class Pull extends Command { if (pull.includes('Already up to date')) return updateMessage.edit(`${this.client.stores.emojis.success} ***No updates available***`); if (!pull.includes('origin/master')) return updateMessage.edit(`${this.client.stores.emojis.error} ***Unexpected output:***\n\`\`\`sh\n${pull}\n\`\`\``); - const passedPull = await updateMessage.edit(`${this.client.stores.emojis.success} ***Pulled latest commit***\n${this.client.stores.emojis.loading} ***Rebuilding files...***\n\`\`\`sh\n${pull}\\n\`\`\``); + const passedPull = await updateMessage.edit(`${this.client.stores.emojis.success} ***Pulled latest commit***\n${this.client.stores.emojis.loading} ***Rebuilding files...***\n\`\`\`sh\n${pull}\n\`\`\``); try { await this.client.util.exec('cd ../ && tsc -p ./tsconfig.json'); } catch (error) {