-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
doc: update BUILDING.md #8704
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: update BUILDING.md #8704
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -103,7 +103,8 @@ Prerequisites: | |
| * Basic Unix tools required for some tests, | ||
| [Git for Windows](http://git-scm.com/download/win) includes Git Bash | ||
| and tools which can be included in the global `PATH`. | ||
| * vcbuild is provided by this repo as a batch file so if using powershell, use local syntax `./vcbuild nosign` | ||
|
|
||
| Please note that vcbuild is a batch file provided with the Node.js source code. If using PowerShell, use local syntax. For example: ./vcbuild nosign | ||
|
||
|
|
||
| ```console | ||
| > vcbuild nosign | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is Windows, wouldn't
.\be more correct (and work incmd.exeand PowerShell)? Is there any reason not to prefix all the examples.\(e.g..\vcbuild) to be consistent with./configure/./nodeexamples in the Unix / OS X section?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That sounds like an even better solution if that will work on all common Windows environments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point!