Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: windows command missing space (#2553)
  • Loading branch information
HeatonZ committed Nov 19, 2021
1 parent 8083f6b commit cc37b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Updating-npm-bundled-node-gyp.md
Expand Up @@ -27,7 +27,7 @@ npm config set node_gyp $(npm prefix -g)/lib/node_modules/node-gyp/bin/node-gyp.
### Windows Command Prompt
```
npm install --global node-gyp@latest
for /f "delims=" %P in ('npm prefix -g') do npm config set node_gyp"%P\node_modules\node-gyp\bin\node-gyp.js"
for /f "delims=" %P in ('npm prefix -g') do npm config set node_gyp "%P\node_modules\node-gyp\bin\node-gyp.js"
```

### Powershell
Expand Down

0 comments on commit cc37b88

Please sign in to comment.