From 31ff776f1b520af3f6e6f642bdd23e900cca2ace Mon Sep 17 00:00:00 2001 From: Alexey Andreev Date: Thu, 26 Jan 2023 12:48:31 +0100 Subject: [PATCH] Fix deploy script --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 5a5a37d1d..045db1203 100755 --- a/deploy.sh +++ b/deploy.sh @@ -50,7 +50,7 @@ function deploy_teavm { GRADLE+=" -Pteavm.publish.username=$TEAVM_DEPLOY_LOGIN" GRADLE+=" -Pteavm.publish.password=$TEAVM_DEPLOY_PASSWORD" - $GRADLE build -x test || { echo 'Build failed' ; return 1; } + $GRADLE build || { echo 'Build failed' ; return 1; } $GRADLE publishAllPublicationsToTeavmRepository || { echo 'Deploy failed' ; return 1; } curl -T tools/idea/build/distributions/idea-$TEAVM_DEPLOY_VERSION_FULL.zip \