-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use $HOME instead of ~ in PATH env variable
Signed-off-by: Jose Blanquicet <josebl@microsoft.com>
- Loading branch information
1 parent
624adef
commit 2918057
Showing
5 changed files
with
23 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Start: Define custom environment variables | ||
|
||
# Add dotnet tools to PATH so users can install a tool using dotnet tools and | ||
# can execute that command from any directory | ||
export PATH=$HOME/.dotnet/tools:$PATH | ||
|
||
# Add user's home directories to PATH at the front so they can install tools | ||
# which override defaults | ||
export PATH=$HOME/.local/bin:$HOME/bin:$PATH | ||
|
||
# End: Define custom environment variables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters