Skip to content

Commit

Permalink
Fix both messages being logged
Browse files Browse the repository at this point in the history
  • Loading branch information
ptlthg committed Jan 8, 2025
1 parent 6f20016 commit e465d7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/server/helper/NotEnoughUpdates/parseNEURepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ export async function intializeNEURepository() {
} catch (error) {
if (error instanceof GitError && error.message.includes("already exists")) {
console.log("[NOT-ENOUGH-UPDATES] Repository already exists.");
} else {
console.error("[NOT-ENOUGH-UPDATES] Error cloning repository:", error);
}

console.error("[NOT-ENOUGH-UPDATES] Error cloning repository:", error);
}
}
}
Expand Down

0 comments on commit e465d7e

Please sign in to comment.