Skip to content

Commit 81fcb5c

Browse files
committed
add new line at the end to the fetched sheets
1 parent 95cd909 commit 81fcb5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data-updater/fetch-sheets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const fetchSheets = () => {
2020
case 'fulfilled':
2121
fs.writeFileSync(
2222
path.resolve(__dirname, sheetToFetch.output),
23-
JSON.stringify(result.value.data.values, null, 2),
23+
`${JSON.stringify(result.value.data.values, null, 2)}\n`,
2424
);
2525
console.info(`${sheetToFetch.output} is generated`);
2626
break;

0 commit comments

Comments
 (0)