From 12481ce18645aa77f109b7ff0b2bc6741a556f0d Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Mon, 24 Mar 2025 16:13:38 +0400 Subject: [PATCH] compiler: fix quote syntax (#4054) (cherry picked from commit 2271b7bee8bafc3374a890a50035ef536477fed4) --- compiler/run-validations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/run-validations.js b/compiler/run-validations.js index bc67c36e23..9f68cfd66d 100755 --- a/compiler/run-validations.js +++ b/compiler/run-validations.js @@ -108,7 +108,7 @@ async function run () { const isCompilerInstalled = await $`[[ -d ${path.join(compilerPath, 'node_modules')} ]]`.exitCode === 0 const isTsGeneratorInstalled = await $`[[ -d ${path.join(tsGeneratorPath, 'node_modules')} ]]`.exitCode === 0 if (noCache || !isCompilerInstalled || !isTsGeneratorInstalled) { - spinner.text = 'It looks like you didn't install the project dependencies, doing that for you' + spinner.text = "It looks like you didn't install the project dependencies, doing that for you" await $`npm install --prefix ${compilerPath}` await $`npm install --prefix ${tsGeneratorPath}` }