-
Notifications
You must be signed in to change notification settings - Fork 335
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
Small improvements to how to contribute #305
base: main
Are you sure you want to change the base?
Small improvements to how to contribute #305
Conversation
I thought it was confusing that there were two different places where you would be 'cd'ing into vscode. Since you can read through both of these one after another, someone who doesn't know that there isn't a vscode folder inside of the vscode repo might be confused as to where they should be. Having the 'cd vscode' appear just once when you create the repo made more sense to me.
"You can open the `vscode` folder" is ambiguous as to where the folder should be opened. Because of this I changed the wording to be a bit clearer and added a "code ." suggestion as that would be easier for most developers to follow at the point the previous steps put them into the vscode folder.
When following this guide, the build step was failing with both methods. I didn't know why it wasn't working until I realized that my path contained spaces and that was breaking things. To help future users I added a warning and troubleshooting tip so that people can avoid this mistake in the future or people who also make this mistake will have less trouble resolving it.
> Make sure that the path to your local clone does not contain spaces. | ||
> This can cause issues with later steps. |
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.
What sort of problems does this cause exactly?
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.
I don't remember exactly how it was failing, but it would fail halfway through the build step. I noticed the error had the path up to the space, so I changed that, and then it started building successfully.
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.
I also added a bullet in the troubleshooting section under the build step to solve this problem, but I thought something to help avoid the issue entirely would be prudent as well.
Fixed three small issues I ran into while following the How-To-Contribute.md guide.
See commit messages for more details.