Skip to content

Commit 0e004f7

Browse files
authored
hack/ci/check-doc-only-update: don't set -x (#1075)
**Description of the change:** Removes `-x` set option in check-doc-only-update **Motivation for the change:** The `set -x` option was persisting throughout the entire test since we were sourcing the script, and this was causing the travis logs to become much more difficult to understand. We don't need the `-x` option for this script, so we can remove it to improve the travis logs.
1 parent e3f9820 commit 0e004f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/ci/check-doc-only-update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
set -ex
3+
set -e
44

55
# Make sure the TRAVIS_COMMIT_RANGE is valid, by catching any errors and exiting.
66
if [ -z "$TRAVIS_COMMIT_RANGE" ] || ! git rev-list --quiet $TRAVIS_COMMIT_RANGE; then

0 commit comments

Comments
 (0)