Skip to content

Commit 0f5e769

Browse files
compiler: fix quote syntax (#4054) (#4062)
(cherry picked from commit 2271b7b) Co-authored-by: Quentin Pradet <[email protected]>
1 parent 06cf4ba commit 0f5e769

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/run-validations.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ async function run () {
108108
const isCompilerInstalled = await $`[[ -d ${path.join(compilerPath, 'node_modules')} ]]`.exitCode === 0
109109
const isTsGeneratorInstalled = await $`[[ -d ${path.join(tsGeneratorPath, 'node_modules')} ]]`.exitCode === 0
110110
if (noCache || !isCompilerInstalled || !isTsGeneratorInstalled) {
111-
spinner.text = 'It looks like you didn't install the project dependencies, doing that for you'
111+
spinner.text = "It looks like you didn't install the project dependencies, doing that for you"
112112
await $`npm install --prefix ${compilerPath}`
113113
await $`npm install --prefix ${tsGeneratorPath}`
114114
}

0 commit comments

Comments
 (0)