Skip to content

Commit

Permalink
Escape dirs in the yarn cmd (#1688)
Browse files Browse the repository at this point in the history
  • Loading branch information
v1ktor authored and gschier committed Sep 30, 2019
1 parent e14237a commit e1c185c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/insomnia-app/app/plugins/install.js
Expand Up @@ -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',
Expand Down

0 comments on commit e1c185c

Please sign in to comment.