mirror of
https://github.com/public-apis/public-apis.git
synced 2025-05-14 17:46:50 +02:00
Merge pull request #530 from toddmotto/check-json-build
Add check to see if /json was changed
This commit is contained in:
commit
ff37600892
2 changed files with 37 additions and 26 deletions
|
@ -16,6 +16,17 @@ else
|
||||||
cat additions.txt
|
cat additions.txt
|
||||||
echo "------- END ADDITIONS ------"
|
echo "------- END ADDITIONS ------"
|
||||||
LINK_FILE=additions.txt
|
LINK_FILE=additions.txt
|
||||||
|
|
||||||
|
echo "checking if /json was changed..."
|
||||||
|
if egrep "\+{3}\s.\/json\/" diff.txt > json.txt; then
|
||||||
|
echo "JSON files are auto-generated! Please do not update these files:"
|
||||||
|
cat json.txt
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
echo "/json check passed!"
|
||||||
|
rm json.txt
|
||||||
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "running format validation..."
|
echo "running format validation..."
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"count": 465,
|
"count": 465,
|
||||||
"entries": [
|
"entries": [
|
||||||
{
|
{
|
||||||
"API": "Dogs",
|
"API": "Dogs are the best",
|
||||||
"Auth": null,
|
"Auth": null,
|
||||||
"Category": "Animals",
|
"Category": "Animals",
|
||||||
"Description": "Based on the Stanford Dogs Dataset",
|
"Description": "Based on the Stanford Dogs Dataset",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue