From: Anton Yuzhaninov Date: Tue, 16 Oct 2018 19:14:50 +0000 (-0400) Subject: Indent shell command for readability X-Git-Tag: 1.8.2~196^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2596%2Fhead;p=thirdparty%2Frspamd.git Indent shell command for readability --- diff --git a/.drone.yml b/.drone.yml index f23fa93e68..98bd725627 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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