aspnetcore: OSX install guide missing important step of sourcing .sh file
brew install dnvm places a shell script that needs to be sourced.
I am using zsh, and the script is entirely silent when run. Only after actually opening up dnvm.sh did I realize that it was a bag of functions that needed to be sourced.
Solutions:
- Update README to note this
- Have the script output something if it was run, rather than sourced.
About this issue
- Original URL
- State: closed
- Created 9 years ago
- Comments: 23
Commits related to this issue
- Disables tests (#499) — committed to dotnet/aspnetcore by jkotalik 7 years ago
- Make Karma serve .ts files with executable MIME type, otherwise newer versions of Chrome won't run it. Fixes #499 — committed to dotnet/aspnetcore by SteveSandersonMS 7 years ago
- Added Name and FileName to IFormFile This commits also gets rid of the name closure in FormFileCollection by interating over the files in the collection instead of using Find and FindAll. Closes #35... — committed to dotnet/aspnetcore by khellang 9 years ago
- Tolerate leading "~/" or "/" (#499) Addresses #441 — committed to dotnet/aspnetcore by jbagga 7 years ago
- Merge pull request #499 from hishamco/buildStatus Add AppVeyor, Travis build status — committed to dotnet/aspnetcore by Eilon 9 years ago
I’ve added the
source dmvm.shto my~/.zshrcand run @jrock2004’s line and it all works perfectly now!! So basically this needs to be mentioned in the README and it all is fine and dandy.