From e523e277e7880ca84872ab67d6e7eba1064edffc Mon Sep 17 00:00:00 2001 From: Bsian Date: Tue, 12 May 2020 16:24:06 +0100 Subject: [PATCH] Return the correct message --- 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 7639315..9a4c8f5 100644 --- a/src/commands/pull.ts +++ b/src/commands/pull.ts @@ -61,7 +61,7 @@ export default class Pull extends Command { updatedPackages = await updateMessage.edit(updatedMessage); } else { const updatedMessage = passedPull.content.replace(`${this.client.stores.emojis.loading} ***Reinstalling dependencies...***`, `${this.client.stores.emojis.error} ***Unexpected yarn install output***\n` - + `\`\`\`\n${pull}\n\`\`\``); + + `\`\`\`\n${install}\n\`\`\``); this.client.updating = false; return updateMessage.edit(updatedMessage); }