diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-02-03 23:36:07 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-02-11 16:53:34 +0100 |
commit | c373226ee7e63adf136b54bc59e307c4af36f015 (patch) | |
tree | ac1b5c942ca4a3c133b50c40bef51ea6613f8659 /ci/common/submit_coverage.sh | |
parent | 4761dd4fc2d7ecaef3516b3931589e4310bc6db7 (diff) | |
download | rneovim-c373226ee7e63adf136b54bc59e307c4af36f015.tar.gz rneovim-c373226ee7e63adf136b54bc59e307c4af36f015.tar.bz2 rneovim-c373226ee7e63adf136b54bc59e307c4af36f015.zip |
ci: disable tracing (set -x) from the shell scripts
Diffstat (limited to 'ci/common/submit_coverage.sh')
-rwxr-xr-x | ci/common/submit_coverage.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/common/submit_coverage.sh b/ci/common/submit_coverage.sh index cb6ab62b5b..f781ca8e5e 100755 --- a/ci/common/submit_coverage.sh +++ b/ci/common/submit_coverage.sh @@ -4,7 +4,7 @@ # Args: # $1: Flag(s) for codecov, separated by comma. -set -ex +set -e # Change to grandparent dir (POSIXly). CDPATH='' cd -P -- "$(dirname -- "$0")/../.." || exit |