From f27b7a79c1c2eb5f60c3a556452eca761c4f40e8 Mon Sep 17 00:00:00 2001 From: Philipp Lepold Date: Thu, 18 Jan 2024 16:37:41 +0100 Subject: [PATCH] possible fix for Xcode Cloud build error --- open_earable/ios/ci_scripts/ci_post_clone.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/open_earable/ios/ci_scripts/ci_post_clone.sh b/open_earable/ios/ci_scripts/ci_post_clone.sh index f888c39..6b7da88 100755 --- a/open_earable/ios/ci_scripts/ci_post_clone.sh +++ b/open_earable/ios/ci_scripts/ci_post_clone.sh @@ -5,8 +5,8 @@ set -e # by default, the execution directory of this script is the ci_scripts directory # CI_WORKSPACE is the directory of your cloned repo -echo "🟩 Navigate from ($PWD) to ($CI_WORKSPACE)" -cd $CI_WORKSPACE +echo "🟩 Navigate from ($PWD) to ($CI_WORKSPACE_PATH)" +cd $CI_WORKSPACE_PATH echo "🟩 Install Flutter" time git clone https://github.com/flutter/flutter.git -b stable $HOME/flutter