Browse Source

Merge pull request #755 from AppFlowy-IO/feat/fix_install_macos

chore: fix install script errors
Nathan.fooo 2 years ago
parent
commit
d6911b7b5f
1 changed files with 4 additions and 2 deletions
  1. 4 2
      frontend/scripts/install_dev_env/install_macos.sh

+ 4 - 2
frontend/scripts/install_dev_env/install_macos.sh

@@ -22,12 +22,14 @@ printError() {
 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."
 
-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" ]; then
+if [ ${installrust} == "Y" ] || [ ${installrust} == "y" ]; then
    printMessage "Installing Rust."
    brew install rustup-init
    rustup-init -y --default-toolchain=stable
+  
+   source "$HOME/.cargo/env"
 else
    printMessage "Skipping Rust installation."
 fi