File tree 1 file changed +4
-2
lines changed
Filter options
1 file changed +4
-2
lines changed
Original file line number Diff line number Diff line change @@ -26,8 +26,10 @@ before_install:
26
26
- curl -LOk $(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip\"" | sed 's/"//g')
27
27
# download latest utPLSQL-cli release
28
28
- curl -Lk -o utPLSQL-cli.zip $(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL-cli/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip\"" | sed 's/"//g')
29
- - echo '{"experimental":"enabled"}' | sudo tee $HOME/.docker/config.json
30
- - docker login -u "${DOCKER_USER}" -p "${DOCKER_PASSWORD}"
29
+ - cat ~/.docker/config.json
30
+ - cat <<< $(jq '.+{"experimental":"enabled"}' ~/.docker/config.json) > ~/.docker/config.json
31
+ # - echo '{"experimental":"enabled"}' | sudo tee $HOME/.docker/config.json
32
+ - echo ""${DOCKER_PASSWORD}" | docker login -u "${DOCKER_USER}" --password-stdin
31
33
32
34
install :
33
35
- npm install -g casperjs
You can’t perform that action at this time.
0 commit comments