From 3b8da326a7961b467cfde7396de45548a3807f96 Mon Sep 17 00:00:00 2001 From: KangWon LEE Date: Fri, 5 Jul 2019 21:37:01 +0900 Subject: [PATCH] indicate windows cache found condition --- install_nix_win_cache.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install_nix_win_cache.sh b/install_nix_win_cache.sh index 1ac148eb..a0f125ad 100644 --- a/install_nix_win_cache.sh +++ b/install_nix_win_cache.sh @@ -7,9 +7,12 @@ if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then bash $HOME/download/miniconda.sh -b -u -p $MINICONDA_PATH; fi; elif [[ "$TRAVIS_OS_NAME" == "windows" ]]; then + echo "checking if folder $MINICONDA_SUB_PATH exists" if [[ -d $MINICONDA_SUB_PATH ]]; then + echo "folder $MINICONDA_SUB_PATH exists" echo "miniconda for Windows already installed"; else + echo "folder $MINICONDA_SUB_PATH does not exist" echo "installing miniconda for windows"; choco install miniconda3 --params="'/JustMe /AddToPath:1 /D:$MINICONDA_PATH_WIN'"; fi;