Skip to content

Commit cc37b88

Browse files
authored
fix: windows command missing space (#2553)
1 parent 8083f6b commit cc37b88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Updating-npm-bundled-node-gyp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ npm config set node_gyp $(npm prefix -g)/lib/node_modules/node-gyp/bin/node-gyp.
2727
### Windows Command Prompt
2828
```
2929
npm install --global node-gyp@latest
30-
for /f "delims=" %P in ('npm prefix -g') do npm config set node_gyp"%P\node_modules\node-gyp\bin\node-gyp.js"
30+
for /f "delims=" %P in ('npm prefix -g') do npm config set node_gyp "%P\node_modules\node-gyp\bin\node-gyp.js"
3131
```
3232

3333
### Powershell

0 commit comments

Comments
 (0)