瀏覽代碼

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

Loading…
取消
儲存