Fix colors

This commit is contained in:
Ivan Bushchik 2023-01-03 23:38:55 +03:00
parent e231498176
commit 08b2ee203c

View file

@ -31,7 +31,7 @@ $TEA +htop.dev zsh -c "exit"
echo "${ARROW} Installing git"
$TEA +git-scm.org zsh -c "exit"
read -p "${INPUT} Would you like to install compilers/interpretators (LLVM, Rust, Python)? (y/N): " INSTALL_COMPILERS
read -p ":: Would you like to install compilers/interpretators (LLVM, Rust, Python)? (y/N): " INSTALL_COMPILERS
if [[ $INSTALL_COMPILERS == "y" || $INSTALL_COMPILERS == "Y" ]]; then
echo "${ARROW} Installing rust"
$TEA +rust-lang.org zsh -c "exit"
@ -41,7 +41,7 @@ if [[ $INSTALL_COMPILERS == "y" || $INSTALL_COMPILERS == "Y" ]]; then
$TEA +python.org zsh -c "exit"
fi
read -p "${INPUT} Would you like to install development tools (GitHub CLI, make/cmake/meson/ninja)? (y/N): " INSTALL_TOOLS
read -p ":: Would you like to install development tools (GitHub CLI, make/cmake/meson/ninja)? (y/N): " INSTALL_TOOLS
if [[ $INSTALL_TOOLS == "y" || $INSTALL_TOOLS == "Y" ]]; then
echo "${ARROW} Installing GitHub CLI"
$TEA +cli.github.com zsh -c "exit"