Commit b76486d6 authored by davemachado's avatar davemachado
Browse files

Move json into PR-only branch

parent e0ffb2ff
......@@ -16,17 +16,17 @@ else
cat additions.txt
echo "------- END ADDITIONS ------"
LINK_FILE=additions.txt
fi
echo "checking if /json was changed..."
egrep "\+{3}\s.\/json\/" diff.txt > json.txt
if [ $? -eq 0 ]; then
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
else
echo "/json check passed!"
rm json.txt
fi
fi
echo "running format validation..."
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment