소스 검색

fix(android) - separates the invocation of the gradle tasks. It was noticed on some configurations that the publish task was executed before assembleRelease finished

master
Titus-Andrei Moldovan 4 년 전
부모
커밋
9f9e192c3c
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      android/scripts/release-sdk.sh

+ 3
- 1
android/scripts/release-sdk.sh 파일 보기

@@ -89,7 +89,9 @@ fi
89 89
 # Now build and publish the Jitsi Meet SDK and its dependencies
90 90
 echo "Building and publishing the Jitsi Meet SDK"
91 91
 pushd ${THIS_DIR}/../
92
-./gradlew clean assembleRelease publish
92
+./gradlew clean 
93
+./gradlew assembleRelease 
94
+./gradlew publish
93 95
 popd
94 96
 
95 97
 if [[ $DO_GIT_TAG == 1 ]]; then

Loading…
취소
저장