Skip to content

Commit 4ab9153

Browse files
committed
Fix format
1 parent 6e4016d commit 4ab9153

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/get-url-status.mjs

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@ async function getUrlHeadless(url) {
3535
// Crate found iff title is `${crateName} - crates.io: Rust Package Registry`
3636
if (!title.startsWith(crateName)) status = 404;
3737
}
38-
39-
log(`Headless fetch returned HTTP status code: ${status}; page title: '${title}'`);
38+
39+
log(
40+
`Headless fetch returned HTTP status code: ${status}; page title: '${title}'`,
41+
);
4042

4143
return status;
4244
} catch (error) {

0 commit comments

Comments
 (0)