Skip to content

Commit d6f306a

Browse files
authored
Merge pull request #296 from integer32llc/travis-docker
Update Docker login procedure to newest recommended by Travis
2 parents 38de057 + 98ebfd7 commit d6f306a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis/build-containers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [[ ("${TRAVIS_PULL_REQUEST}" == "false") &&
77
(-n "${DOCKER_USERNAME}") &&
88
(-n "${DOCKER_PASSWORD}") ]]
99
then
10-
docker login -u="${DOCKER_USERNAME}" -p="${DOCKER_PASSWORD}"
10+
echo "${DOCKER_PASSWORD}" | docker login -u "{$DOCKER_USERNAME}" --password-stdin
1111
export PERFORM_PUSH="true"
1212
# Which images to build are set via .travis.yml
1313
cd compiler && ./build.sh

0 commit comments

Comments
 (0)