You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yaml
+2-3
Original file line number
Diff line number
Diff line change
@@ -259,8 +259,7 @@ jobs:
259
259
260
260
- name: Diff | Config Schema
261
261
run: |
262
-
git diff --quiet schemas/config.json
263
-
if [ $? -gt 0 ]; then
264
-
echo "::error::Uncommitted changes for schemas/config.json (run `cargo run -- config generate-schema schemas/config.json` after making changes to the configuration model)"
262
+
if ! git diff --quiet schemas/config.json; then
263
+
echo "::error::Uncommitted changes for schemas/config.json (run 'cargo run -- config generate-schema schemas/config.json' after making changes to the configuration model)"
0 commit comments