From d86fcbe79b148fc52136d8a36789b93e0569f3bb Mon Sep 17 00:00:00 2001 From: Ali <> Date: Wed, 9 Dec 2020 16:17:13 +0400 Subject: [PATCH] Use the absolute path --- buildbox/deploy-appcenter.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/buildbox/deploy-appcenter.sh b/buildbox/deploy-appcenter.sh index a4b30b445b..7519ef5b18 100644 --- a/buildbox/deploy-appcenter.sh +++ b/buildbox/deploy-appcenter.sh @@ -80,5 +80,7 @@ upload_dsym() { "$API_HOST/v0.1/apps/$API_USER_NAME/$API_APP_NAME/symbol_uploads/$DSYM_UPLOAD_ID" } -appcenter login --token "$API_TOKEN" -appcenter distribute release --app "$API_USER_NAME/$API_APP_NAME" -f "$IPA_PATH" -g Internal +APPCENTER="/usr/local/bin/appcenter" + +$APPCENTER login --token "$API_TOKEN" +$APPCENTER distribute release --app "$API_USER_NAME/$API_APP_NAME" -f "$IPA_PATH" -g Internal