Skip to content

Commit 0a940f3

Browse files
committed
Fix lint
1 parent ff5fa35 commit 0a940f3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/changelog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export async function buildNotes(from: string, to: string) {
180180
return [];
181181
}
182182

183-
console.log("generating changelog since " + from);
183+
console.log(`generating changelog since ${from}`);
184184

185185
const opencode = await createOpencode({ port: 5044 });
186186
const notes: string[] = [];

scripts/release.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if (!preview) {
4141
try {
4242
const previous = await getLatestRelease();
4343
notes = await buildNotes(previous, "HEAD");
44-
} catch (error) {
44+
} catch (_error) {
4545
console.log("Could not generate changelog, using default notes");
4646
notes = ["No notable changes"];
4747
}

0 commit comments

Comments
 (0)