Skip to content

Commit

Permalink
Add PowerShell issue details command (#1727)
Browse files Browse the repository at this point in the history
  • Loading branch information
patridge authored and SBoudrias committed Oct 27, 2019
1 parent cb4af52 commit a09ca8a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ In order for us to help you please check that you've completed the following ste

Unix: `yo --version && echo $PATH $NODE_PATH && node -e 'console.log(process.platform, process.versions)'`

Windows: `yo --version && echo %PATH% %NODE_PATH% && node -e "console.log(process.platform, process.versions)"`

Windows (cmd.exe): `yo --version && echo %PATH% %NODE_PATH% && node -e "console.log(process.platform, process.versions)"`

Windows (PowerShell): `yo --version; echo %PATH% %NODE_PATH%; node -e "console.log(process.platform, process.versions)"`

[Submit your issue](https://github.com/yeoman/yeoman/issues/new)


Expand Down

1 comment on commit a09ca8a

@Epherm225
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.