use verbose equals in bash

This commit is contained in:
davemachado 2017-10-26 12:06:07 -04:00
parent 5e51c8b15f
commit e0ffb2ff62

View file

@ -20,7 +20,7 @@ fi
echo "checking if /json was changed..." echo "checking if /json was changed..."
egrep "\+{3}\s.\/json\/" diff.txt > json.txt egrep "\+{3}\s.\/json\/" diff.txt > json.txt
if [[$? == 0]]; then if [ $? -eq 0 ]; then
echo "JSON files are auto-generated! Please do not update these files:" echo "JSON files are auto-generated! Please do not update these files:"
cat json.txt cat json.txt
exit 1 exit 1