From 934a393d894bc7264ebfd936dff1b4a15ab39e8b Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Sat, 18 Aug 2018 18:39:53 +0200 Subject: [PATCH] [ci] Fix escape --- .mottainai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mottainai.yaml b/.mottainai.yaml index 2b5bd79..4d39f2d 100644 --- a/.mottainai.yaml +++ b/.mottainai.yaml @@ -7,7 +7,7 @@ image: "sabayon/builder-amd64" script: - set -e - source storage/env - - curl -s https://api.github.com/repos/mudler/docker-companion/releases/latest | grep 'browser_download_url.*amd64' | cut -d : -f 2,3 | tr -d \" | wget -i - -O docker-companion; chmod a+x docker-companion + - curl -s https://api.github.com/repos/mudler/docker-companion/releases/latest | grep 'browser_download_url.*amd64' | cut -d : -f 2,3 | tr -d \\" | wget -i - -O docker-companion; chmod a+x docker-companion - docker build --no-cache -t sabayon/base-amd64 . - ./docker-companion squash --remove sabayon/base-amd64 - docker login -u $DOCKER_USER -p $DOCKER_PASS