Browse Source

feat: make Rust installation prompt default to N

huyz 2 years ago
parent
commit
69ae3cba04
1 changed files with 3 additions and 3 deletions
  1. 3 3
      frontend/scripts/install_dev_env/install_macos.sh

+ 3 - 3
frontend/scripts/install_dev_env/install_macos.sh

@@ -22,9 +22,9 @@ printError() {
 printMessage "The Rust programming language is required to compile AppFlowy."
 printMessage "The Rust programming language is required to compile AppFlowy."
 printMessage "We can install it now if you don't already have it on your system."
 printMessage "We can install it now if you don't already have it on your system."
 
 
-read -p "$(printSuccess "Do you want to install Rust? [Y/N]") " installrust
+read -p "$(printSuccess "Do you want to install Rust? [y/N]") " installrust
 
 
-if [ ${installrust} == "Y" ] || [ ${installrust} == "y" ]; then
+if [[ "${installrust:-N}" == [Yy] ]]; then
    printMessage "Installing Rust."
    printMessage "Installing Rust."
    brew install rustup-init
    brew install rustup-init
    rustup-init -y --default-toolchain=stable
    rustup-init -y --default-toolchain=stable
@@ -60,7 +60,7 @@ tar -zxv --directory .githooks/. -f ${GOLINT_FILENAME} gitlint
 rm ${GOLINT_FILENAME}
 rm ${GOLINT_FILENAME}
 
 
 # Change to the frontend directory
 # Change to the frontend directory
-cd frontend
+cd frontend || exit 1
 
 
 # Install cargo make
 # Install cargo make
 printMessage "Installing cargo-make."
 printMessage "Installing cargo-make."