Skip to content

Commit

Permalink
Update log
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmota committed Jul 25, 2024
1 parent 529fdb5 commit e338a8a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/src/Controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,9 @@ export class Controller {
try {
await git.checkout(['-b', 'master'])
} catch (err) {
console.log('checkout error', err.message)
if (!err.message.includes('already exists')) {
console.log('checkout branch error', err.message)
}
}

try {
Expand Down

0 comments on commit e338a8a

Please sign in to comment.