Jeremiah Lowin commited on
Commit
6dfadd8
·
unverified ·
1 Parent(s): 3685b24

Update `just` error message (#1483)

Browse files
Files changed (1) hide show
  1. .github/workflows/run-static.yml +2 -2
.github/workflows/run-static.yml CHANGED
@@ -70,14 +70,14 @@ jobs:
70
  echo "Files that were updated:"
71
  git diff --name-only docs/python-sdk/
72
  echo ""
73
- echo "Run 'just api-ref-all' and commit the changes."
74
  exit 1
75
  fi
76
 
77
  # Check if docs.json content changed (ignoring formatting)
78
  if ! jq --sort-keys . docs/docs.json.orig | diff -q - <(jq --sort-keys . docs/docs.json) > /dev/null 2>&1; then
79
  echo "❌ docs.json content has changed!"
80
- echo "Run 'just api-ref-all' and commit the changes."
81
  exit 1
82
  fi
83
 
 
70
  echo "Files that were updated:"
71
  git diff --name-only docs/python-sdk/
72
  echo ""
73
+ echo "Run `just api-ref-all` to regenerate the SDK docs, then commit the changes. Note: you may need to install `just` (https://github.com/casey/just)"
74
  exit 1
75
  fi
76
 
77
  # Check if docs.json content changed (ignoring formatting)
78
  if ! jq --sort-keys . docs/docs.json.orig | diff -q - <(jq --sort-keys . docs/docs.json) > /dev/null 2>&1; then
79
  echo "❌ docs.json content has changed!"
80
+ echo "Run `just api-ref-all` to regenerate the SDK docs, then commit the changes. Note: you may need to install `just` (https://github.com/casey/just)"
81
  exit 1
82
  fi
83