Skip to content

Commit d5c7167

Browse files
committed
fmt
1 parent 9423f80 commit d5c7167

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/sync-version.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ async function main() {
4848
try {
4949
versionFileContents = await readFile(versionFilePath, 'utf8');
5050
} catch (err) {
51-
throw new Error(`Failed to read version file at ${versionFilePath}: ${err.message}`);
51+
throw new Error(
52+
`Failed to read version file at ${versionFilePath}: ${err.message}`
53+
);
5254
}
5355
const match = versionFileContents.match(VERSION_EXPORT_PATTERN);
5456

0 commit comments

Comments
 (0)