1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 16:30:58 -05:00

Causing issues in container environment due to dockerignore file

This commit is contained in:
toast-ts 2024-04-11 17:19:42 +10:00
parent 7e105f8a1e
commit 6eb0298238

View File

@ -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)=>{