From a1fe7a5c7abc30893f59b9b2a93552146a8f1d71 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Thu, 11 Apr 2024 17:19:42 +1000 Subject: [PATCH] Causing issues in container environment due to `dockerignore` file --- src/commands/dev.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/dev.ts b/src/commands/dev.ts index 452c800..6b46563 100644 --- a/src/commands/dev.ts +++ b/src/commands/dev.ts @@ -81,7 +81,7 @@ export default class Developer { if (interaction.replied) interaction.followUp(update_success); else interaction.reply(update_success); }; - exec('git pull --rebase', {windowsHide:true}, (err:Error, stdout)=>{ + exec('git pull', {windowsHide:true}, (err:Error, stdout)=>{ if (err) hammondYouIdiot.edit(`\`\`\`${UsernameHelper(err.message)}\`\`\``); else if (stdout.includes('Already up to date')) hammondYouIdiot.edit('Repository is currently up to date.'); else hammondYouIdiot.edit('Running `yarn tsc`...').then(()=>exec('yarn tsc', {windowsHide:true}, (err:Error)=>{