-
-
Notifications
You must be signed in to change notification settings - Fork 28
Closed
Description
Codelens does not work if there is a space in the path.
This happens with macOS and Windows
I can not compile the project....?!?
ORIGINAL
const buildCommand =
os.platform() === 'win32'
? `powershell -ExecutionPolicy ByPass -File build.ps1 -script ${fileName} -target \"${taskName}\" -verbosity=${runConfig.verbosity}`
: `./build.sh --script ${fileName} --target=\"${taskName}\" --verbosity=${runConfig.verbosity}`;
FIXED
const buildCommand =
os.platform() === 'win32'
? `powershell -ExecutionPolicy ByPass -File build.ps1 -script \"${fileName}\" -target \"${taskName}\" -verbosity ${runConfig.verbosity}`
: `./build.sh --script=\"${fileName}\" --target=\"${taskName}\" --verbosity=${runConfig.verbosity}`;
Reactions are currently unavailable