diff options
author | Anton Yuzhaninov <citrin+git@citrin.ru> | 2018-10-16 15:14:50 -0400 |
---|---|---|
committer | Anton Yuzhaninov <citrin+git@citrin.ru> | 2018-10-16 15:14:50 -0400 |
commit | e68fabf1e12658990f79bbed84f78329e2c2d909 (patch) | |
tree | 0332a608ebe946d46b38aefc0ed1c32d2e3e7a77 /.drone.yml | |
parent | 8f2fee880f5bcbfe644cee8fbdfa87d3835e4fab (diff) | |
download | rspamd-e68fabf1e12658990f79bbed84f78329e2c2d909.tar.gz rspamd-e68fabf1e12658990f79bbed84f78329e2c2d909.zip |
Indent shell command for readability
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.drone.yml b/.drone.yml index f23fa93e6..98bd72562 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 |