Skip to content

Commit

Permalink
Minor code style fixes of Travis CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mabrarov committed Nov 13, 2020
1 parent 1f7db23 commit 5746fab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions travis/build-and-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

set -e

# shellcheck source=maven.sh
source "${TRAVIS_BUILD_DIR}/travis/maven.sh"

build_maven_project() {
Expand Down
2 changes: 1 addition & 1 deletion travis/install-docker-compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

docker_compose_url="https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-"$(uname -s)"-$(uname -m)"
docker_compose_url="https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m)"
docker_compose_tmp="$(mktemp)"
echo "Downloading Docker Compose from ${docker_compose_url} into ${docker_compose_tmp}"
curl -Ls "${docker_compose_url}" > "${docker_compose_tmp}"
Expand Down
2 changes: 2 additions & 0 deletions travis/push-docker-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

set -e

# shellcheck source=maven.sh
source "${TRAVIS_BUILD_DIR}/travis/maven.sh"
# shellcheck source=travis-retry.sh
source "${TRAVIS_BUILD_DIR}/travis/travis-retry.sh"

main() {
Expand Down

0 comments on commit 5746fab

Please sign in to comment.