Expand feedback on configure-jfrog.sh.

This commit is contained in:
Corneil du Plessis
2024-11-15 11:15:43 +02:00
parent b11f1470e6
commit 4e6d511f61
2 changed files with 3 additions and 1 deletions

View File

@@ -732,7 +732,6 @@ jobs:
- name: Configure JFrog Cli
shell: bash
run: |
jfrog rt ping
./configure-jfrog.sh ${{ needs.parameters.outputs.build_version_type }}
echo JFROG_CLI_BUILD_NAME=stream-apps-main-release >> $GITHUB_ENV
echo JFROG_CLI_BUILD_NUMBER=$GITHUB_RUN_NUMBER >> $GITHUB_ENV

View File

@@ -19,10 +19,13 @@ echo "MVNC=$MVNC"
jfrog mvnc $MVNC
RC=$?
if ((RC !=0)); then
echo "jfrog mvnc $MVNC"
echo "error: $RC"
exit $RC
fi
jfrog rt ping
RC=$?
if ((RC !=0)); then
echo "jfrog rt ping error: $RC"
exit $RC
fi