Skip to content

Commit 235c777

Browse files
committed
Fix docker cfg cache dir
1 parent f4a9810 commit 235c777

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jdk:
99

1010
env:
1111
global:
12-
- DOCKER_CFG=$HOME/.docker/config.json
12+
- DOCKER_CFG=$HOME/.docker
1313
- DOCKER_REPO="viniciusam/oracledb"
1414
- UTPLSQL_VERSION="v3.0.0-beta"
1515
- UTPLSQL_FILE="utPLSQLv3.0.0.562-beta"

.travis/start_db.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
# If docker credentials are not cached, do the login.
5-
if [ ! -f $DOCKER_CFG ]; then
5+
if [ ! -f $DOCKER_CFG/config.json ]; then
66
docker login -u "$DOCKER_USER" -p "$DOCKER_PASSWORD"
77
else
88
echo "Using docker login from cache..."

0 commit comments

Comments
 (0)