Skip to content

Commit

Permalink
fix(backend): missing commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dr460nf1r3 committed Nov 16, 2024
1 parent f138f10 commit 94178bb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions backend/src/repo-manager/repo-manager.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1228,8 +1228,10 @@ class RepoManager {
counter = 0;
commitMessage = `chore(bump): `;
commitBody = "";
} else {
counter++
}
} catch (err: any) {
} catch (err: unknown) {
Logger.error(err, "RepoManager");
}
}
Expand All @@ -1247,7 +1249,7 @@ class RepoManager {
});

Logger.debug(`Pushed changes to ${repo.name}`, "RepoManager");
} catch (err: any) {
} catch (err: unknown) {
Logger.error(err, "RepoManager");
}
}
Expand Down Expand Up @@ -1285,7 +1287,7 @@ class RepoManager {
}
} catch (err: unknown) {}

let configs = {};
const configs = {};
let rebuildTriggers: string[];

if (configLines && configLines.length > 0) {
Expand Down

0 comments on commit 94178bb

Please sign in to comment.