Skip to content

Commit

Permalink
chore: fix eslint (#6504)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Jan 22, 2024
1 parent f982f5d commit d5812ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/shared/overwrite-version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {writeFileSync} from 'fs';

export function overwriteVersion(file: string, version: string): void {
writeFileSync(file, `export const TUI_VERSION = \`${version}\`;\n`, {
writeFileSync(file, `export const TUI_VERSION = '${version}';\n`, {
encoding: 'utf-8',
});
}

0 comments on commit d5812ec

Please sign in to comment.