Skip to content

Commit

Permalink
[Tool] Fix condition of thirdparty in CI (#43042)
Browse files Browse the repository at this point in the history
Signed-off-by: andyziye <[email protected]>
  • Loading branch information
andyziye authored Mar 25, 2024
1 parent cf28c56 commit 3877adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
steps:
- name: Check Result
run: |
if [[ "${{ needs.thirdparty-update.result }} == 'failure' ]]; then
if [[ "${{ needs.thirdparty-update.result }}" == 'failure' ]]; then
echo "::error:: Thirdparty Update Error!"
exit 1
fi
Expand Down

0 comments on commit 3877adb

Please sign in to comment.