Skip to content

Commit 321d5c6

Browse files
authored
Fix colors in activate.sh. (#35350)
1 parent 49b3b84 commit 321d5c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

activate.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ if [ -n "${BASH:-}" ] || [ -n "${ZSH_VERSION:-}" ] ; then
6060
hash -r 2>/dev/null
6161
fi
6262

63-
echo "${_MAGENTA}Enabled the .NET Core environment. Execute 'deactivate' to exit.${_RESET}"
63+
echo -e "${_MAGENTA}Enabled the .NET Core environment. Execute 'deactivate' to exit.${_RESET}"
6464

6565
if [ ! -f "$DOTNET_ROOT/dotnet" ]; then
66-
echo "${_YELLOW}.NET Core has not been installed yet. Run $DIR/restore.sh to install it.${_RESET}"
66+
echo -e "${_YELLOW}.NET Core has not been installed yet. Run $DIR/restore.sh to install it.${_RESET}"
6767
else
68-
echo "dotnet = $DOTNET_ROOT/dotnet"
68+
echo -e "dotnet = $DOTNET_ROOT/dotnet"
6969
fi

0 commit comments

Comments
 (0)