Skip to content

Commit

Permalink
Expand feedback on configure-jfrog.sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
Corneil du Plessis committed Nov 15, 2024
1 parent 4b93227 commit b3375ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,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
Expand Down
3 changes: 3 additions & 0 deletions configure-jfrog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b3375ce

Please sign in to comment.