From 83a5df31b9b30f5f1bf92f9611573fc9ce0c5916 Mon Sep 17 00:00:00 2001 From: Bsian Date: Wed, 30 Oct 2019 20:24:24 +0000 Subject: [PATCH] Added console output --- 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 9c216e5..f6981e3 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...***`); + 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) {