Escape dirs in the yarn cmd (#1688)

This commit is contained in:
v1ktor 2019-09-30 23:13:03 +03:00 committed by Gregory Schier
parent e14237a555
commit e1c185ced2

View File

@ -133,9 +133,9 @@ async function _installPluginToTmpDir(lookupName: string): Promise<{ tmpDir: str
'add',
lookupName,
'--modules-folder',
tmpDir,
escape(tmpDir),
'--cwd',
tmpDir,
escape(tmpDir),
'--no-lockfile',
'--production',
'--no-progress',