1
0
mirror of synced 2025-12-19 09:57:42 -05:00

Fix bash command substitution bug in OpenAPI sync workflow (#58271)

This commit is contained in:
Kevin Heis
2025-10-30 09:06:16 -07:00
committed by GitHub
parent df04d106df
commit 8139ef18e5

View File

@@ -85,7 +85,7 @@ jobs:
# If nothing to commit, exit now. It's fine. No orphans.
changes=$(git diff --name-only | wc -l)
if [[ $changes -eq 0 ]]; then
echo "There are no changes to commit after running `npm run sync-rest` Exiting..."
echo "There are no changes to commit after running 'npm run sync-rest'. Exiting..."
exit 0
fi