Skip to content

Commit

Permalink
specially
Browse files Browse the repository at this point in the history
  • Loading branch information
seren5240 committed Mar 11, 2024
1 parent 44be4f1 commit 0fe01e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/edit_grammars.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ async function buildLanguage(language) {
);

await execPromise(
`cd ${tsLangDir} && yarn && yarn build && echo 'Generated grammar for ${language}'`,
`cd ${tsLangDir} && yarn && yarn build && echo "Generated grammar for ${language}"`,
);
await Promise.all([
execPromise(`cd ${tsLangDir}/tsx && npx tree-sitter build-wasm`),
Expand Down Expand Up @@ -273,7 +273,7 @@ async function run() {
process.chdir(LANGUAGE_METAVARIABLES);
await Promise.all(languagesTobuild.map(buildLanguage));
await execPromise(
`find . -name 'build.rs' -exec sed -i '' -e 's/Wno-unused-parameter/w/g' {} \\;`,
`find . -name "build.rs" -exec sed -i '' -e 's/Wno-unused-parameter/w/g' {} \\;`,
);
}

Expand Down

0 comments on commit 0fe01e9

Please sign in to comment.