- Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathactivate.sh
94 lines (80 loc) · 2.99 KB
/
activate.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#
# This file must be used by invoking "source activate.sh" from the command line.
# You cannot run it directly.
# To exit from the environment this creates, execute the 'deactivate' function.
_RED="\033[0;31m"
_MAGENTA="\033[0;95m"
_YELLOW="\033[0;33m"
_RESET="\033[0m"
# This detects if a script was sourced or invoked directly
# See https://stackoverflow.com/a/28776166/2526265
sourced=0
if [ -n"$ZSH_EVAL_CONTEXT" ];then
case$ZSH_EVAL_CONTEXTin*:file) sourced=1;; esac
THIS_SCRIPT="${0:-}"
elif [ -n"$KSH_VERSION" ];then
[ "$(cd $(dirname -- $0)&&pwd -P)/$(basename -- $0)"!="$(cd $(dirname -- ${.sh.file})&&pwd -P)/$(basename -- ${.sh.file})" ] && sourced=1
THIS_SCRIPT="${0:-}"
elif [ -n"$BASH_VERSION" ];then
(return 2>/dev/null) && sourced=1
THIS_SCRIPT="$BASH_SOURCE"
else# All other shells: examine $0 for known shell binary filenames
# Detects `sh` and `dash`; add additional shell filenames as needed.
case${0##*/}in sh|dash) sourced=1;; esac
THIS_SCRIPT="${0:-}"
fi
if [ $sourced-eq 0 ];then
printf"${_RED}This script cannot be invoked directly.${_RESET}\n"
printf"${_RED}To function correctly, this script file must be sourced by calling \"source $0\".${_RESET}\n"
exit 1
fi
deactivate () {
# reset old environment variables
if [ !-z"${_OLD_PATH:-}" ] ;then
export PATH="$_OLD_PATH"
unset _OLD_PATH
fi
if [ !-z"${_OLD_PS1:-}" ] ;then
export PS1="$_OLD_PS1"
unset _OLD_PS1
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n"${BASH:-}" ] || [ -n"${ZSH_VERSION:-}" ] ;then
hash -r 2>/dev/null
fi
unset DOTNET_ROOT
unset DOTNET_MULTILEVEL_LOOKUP
if [ !"${1:-}"="init" ] ;then
# Remove the deactivate function
unset -f deactivate
fi
}
# Cleanup the environment
deactivate init
DIR="$(cd"$( dirname "$THIS_SCRIPT")"&&pwd)"
_OLD_PATH="$PATH"
# Tell dotnet where to find itself
export DOTNET_ROOT="$DIR/.dotnet"
# Tell dotnet not to look beyond the DOTNET_ROOT folder for more dotnet things
export DOTNET_MULTILEVEL_LOOKUP=0
# Put dotnet first on PATH
export PATH="$DOTNET_ROOT:$PATH"
# Set the shell prompt
if [ -z"${DISABLE_CUSTOM_PROMPT:-}" ] ;then
_OLD_PS1="$PS1"
export PS1="(`basename \"$DIR\"`) $PS1"
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n"${BASH:-}" ] || [ -n"${ZSH_VERSION:-}" ] ;then
hash -r 2>/dev/null
fi
printf"${_MAGENTA}Enabled the .NET Core environment. Execute 'deactivate' to exit.${_RESET}\n"
if [ !-f"$DOTNET_ROOT/dotnet" ];then
printf"${_YELLOW}.NET Core has not been installed yet. Run $DIR/restore.sh to install it.${_RESET}\n"
else
printf"dotnet = $DOTNET_ROOT/dotnet\n"
fi