Explorar el Código

use verbose equals in bash

pull/530/head
davemachado hace 6 años
padre
commit
e0ffb2ff62
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      build/main.sh

+ 1
- 1
build/main.sh Ver fichero

@@ -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


Cargando…
Cancelar
Guardar