fix: force curl to fail on error
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2022-06-21 15:15:15 +02:00
parent 5dfcb0327c
commit 75ef0bfc3e
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
3 changed files with 6 additions and 6 deletions

View File

@ -20,8 +20,8 @@ ENV URL_PARSER_VERSION="${URL_PARSER_VERSION:-v0.2.12}"
ENV PRETTIER_VERSION="${BUILD_VERSION:-2.7.1}" ENV PRETTIER_VERSION="${BUILD_VERSION:-2.7.1}"
RUN apk --update add curl make tar git && \ RUN apk --update add curl make tar git && \
curl -SsL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${gomplate_VERSION}/gomplate_linux-amd64" && \ curl -SsfL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_linux-amd64" && \
curl -SsL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-amd64" && \ curl -SsfL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-amd64" && \
chmod 755 /usr/local/bin/gomplate && \ chmod 755 /usr/local/bin/gomplate && \
chmod 755 /usr/local/bin/url-parser && \ chmod 755 /usr/local/bin/url-parser && \
npm install -q -g prettier@"$PRETTIER_VERSION"; \ npm install -q -g prettier@"$PRETTIER_VERSION"; \

View File

@ -20,8 +20,8 @@ ENV URL_PARSER_VERSION="${URL_PARSER_VERSION:-v0.2.12}"
ENV PRETTIER_VERSION="${BUILD_VERSION:-2.7.1}" ENV PRETTIER_VERSION="${BUILD_VERSION:-2.7.1}"
RUN apk --update add curl make tar git && \ RUN apk --update add curl make tar git && \
curl -SsL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${gomplate_VERSION}/gomplate_linux-armv7" && \ curl -SsfL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_linux-armv7" && \
curl -SsL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-arm-7" && \ curl -SsfL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-arm-7" && \
chmod 755 /usr/local/bin/gomplate && \ chmod 755 /usr/local/bin/gomplate && \
chmod 755 /usr/local/bin/url-parser && \ chmod 755 /usr/local/bin/url-parser && \
npm install -q -g prettier@"$PRETTIER_VERSION"; \ npm install -q -g prettier@"$PRETTIER_VERSION"; \

View File

@ -20,8 +20,8 @@ ENV URL_PARSER_VERSION="${URL_PARSER_VERSION:-v0.2.12}"
ENV PRETTIER_VERSION="${BUILD_VERSION:-2.7.1}" ENV PRETTIER_VERSION="${BUILD_VERSION:-2.7.1}"
RUN apk --update add curl make tar git && \ RUN apk --update add curl make tar git && \
curl -SsL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${gomplate_VERSION}/gomplate_linux-arm64" && \ curl -SsfL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_linux-arm64" && \
curl -SsL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-arm64" && \ curl -SsfL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-linux-arm64" && \
chmod 755 /usr/local/bin/gomplate && \ chmod 755 /usr/local/bin/gomplate && \
chmod 755 /usr/local/bin/url-parser && \ chmod 755 /usr/local/bin/url-parser && \
npm install -q -g prettier@"$PRETTIER_VERSION"; \ npm install -q -g prettier@"$PRETTIER_VERSION"; \