Merge pull request #2498 from Seikilos/master

Fixed install guide that breaks shell
This commit is contained in:
Lee Coward 2019-03-27 13:42:57 -07:00 committed by GitHub
commit e70e3d1a80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -76,7 +76,7 @@ Installing from the packages detailed above is recommended or you can install fr
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$HOME/dotnet
export PATH=$PATH:$HOME/dotnet
```
## .NET Core Runtime-only installation

View file

@ -44,7 +44,7 @@ You can also install from binary archive, if that better suits your needs. When
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$HOME/dotnet
export PATH=$PATH:$HOME/dotnet
```
## .NET Core Runtime-only installation

View file

@ -45,7 +45,7 @@ Installing from the packages detailed above is recommended or you can install fr
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$HOME/dotnet
export PATH=$PATH:$HOME/dotnet
```
## .NET Core Runtime-only installation