Skip to content

Commit 63af1f7

Browse files
committed
Use 'set -x' to simplify script debugging
1 parent 93db311 commit 63af1f7

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

.travis/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env sh
2+
set -x
23

34
chmod u+x gradlew
45

.travis/deploy-gate.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env sh
2+
set -x
23

34
if [ $TRAVIS_TEST_RESULT -eq 0 ];
45
then

.travis/deploy.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env sh
2+
set -x
23

34
if [ "$TRAVIS_BRANCH" = "main" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ];
45
then

.travis/install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env sh
2+
set -x
23

34
if [ "$TRAVIS_BRANCH" = "main" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ];
45
then

.travis/merge-dev-to-main-gate.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env sh
2+
set -x
23

34
if [ $TRAVIS_TEST_RESULT -eq 0 ];
45
then

.travis/merge-dev-to-main.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env sh
2+
set -x
23

34
GITHUB_REPO="osmlab/maproulette-java-client"
45
MERGE_BRANCH=main

.travis/tag-main-gate.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env sh
2+
set -x
23

34
if [[ $TRAVIS_TEST_RESULT == 0 ]] && [[ 1 == 0 ]];
45
then

.travis/tag-main.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env sh
2+
set -x
23

34
GITHUB_REPO="osmlab/maproulette-java-client"
45
RELEASE_BRANCH=main

.travis/trigger-release.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env sh
2+
set -x
23

34
# Use Travis to trigger a release from Main
45

0 commit comments

Comments
 (0)