Skip to content

Commit

Permalink
Travis: Reduce verbosity of bash commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Pro authored and jpfr committed Mar 21, 2019
1 parent 9e95f3d commit 1083c11
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tools/travis/travis_linux_after_success.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -ev
set -e

# We only want to push the docs once, so we just take the travis run where MINGW=true which is only enabled once
if [ "$MINGW" = "true" ] && [ "${TRAVIS_REPO_SLUG}" = "open62541/open62541" ] && [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
Expand Down
2 changes: 1 addition & 1 deletion tools/travis/travis_linux_before_install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -ev
set -e

if [ -z ${LOCAL_PKG+x} ] || [ -z "$LOCAL_PKG" ]; then
echo "LOCAL_PKG is not set. Aborting..."
Expand Down
2 changes: 1 addition & 1 deletion tools/travis/travis_osx_before_install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -ev
set -e

brew install check
brew install --HEAD valgrind
Expand Down
2 changes: 1 addition & 1 deletion tools/travis/travis_push_doc.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -ev
set -e

# This script will only be executed on branches which are either master or a release
# See travis_linux_after_success.sh
Expand Down
2 changes: 1 addition & 1 deletion tools/travis/travis_push_release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -ev
set -e

TAGSTOSAVE=50
TAG="$(git rev-parse --short=10 HEAD)"
Expand Down

0 comments on commit 1083c11

Please sign in to comment.