Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 committed Aug 3, 2024
1 parent dc03a23 commit 5d390c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/core_docs/scripts/quarto-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function main() {
fs.writeFileSync(pathToRootGitignore, gitignore);
for (const renamedFilepath of allRenames) {
if (fs.existsSync(renamedFilepath)) {
let content = fs.readFileSync(renamedFilepath).toString();
let content = fs.readFileSync(renamedFilepath, "utf-8").toString();
if (
content.match(IGNORED_CELL_REGEX) ||
content.match(LC_TS_IGNORE_REGEX)
Expand Down

0 comments on commit 5d390c9

Please sign in to comment.