Explorar el Código

Indent shell command for readability

tags/1.8.2
Anton Yuzhaninov hace 5 años
padre
commit
e68fabf1e1
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3
    3
      .drone.yml

+ 3
- 3
.drone.yml Ver fichero

@@ -52,9 +52,9 @@ pipeline:
# shell sets exit status of a process terminated by a signal to '128 + signal-number'
# if rspamd-test was terminated by a signal it should be SIGSEGV or SIGABRT, try to examine core
- >
if [ $EXIT_CODE -gt 128 ];
then gdb -c /var/tmp/*.rspamd-test.core ./rspamd-test -ex "set pagination 0" -ex "thread apply all bt full" --batch;
exit $EXIT_CODE;
if [ $EXIT_CODE -gt 128 ]; then
gdb -c /var/tmp/*.rspamd-test.core ./rspamd-test -ex "set pagination 0" -ex "thread apply all bt full" --batch;
exit $EXIT_CODE;
fi
# luacov-coveralls reads luacov.stats.out written by rspamd-test using luacov module
# and writes json report for coveralls.io service

Cargando…
Cancelar
Guardar