Skip to content

Commit

Permalink
Add run-renovate-locally.bash
Browse files Browse the repository at this point in the history
Fix jq chmod
  • Loading branch information
gberche-orange committed Jul 13, 2023
1 parent 16e42e3 commit 3b9656e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ENV INIT_PACKAGES="apt-transport-https ca-certificates curl openssl sudo unzip"
ADD tools/* /tmp/tools/
ADD tools/completion/* /tmp/tools/completion/

RUN installBinary() { printf "\n=> Add $1 CLI\n" ; curl -sSLo /usr/local/bin/$2 "$3" ; chmod +x /usr/local/bin/$2 } && \
RUN installBinary() { printf "\n=> Add $1 CLI\n" ; curl -sSLo /usr/local/bin/$2 "$3" ; chmod 755 /usr/local/bin/$2 } && \
installZip() { printf "\n=> Add $1 CLI\n" ; curl -sSL "$3" | gunzip > /usr/local/bin/$2 ; } && \
installTar() { printf "\n=> Add $1 CLI\n" ; curl -sSL "$3" | tar -x -C /tmp && mv /tmp/$4 /usr/local/bin/$2 ; } && \
installTargz() { printf "\n=> Add $1 CLI\n" ; curl -sSL "$3" | tar -xz -C /tmp && mv /tmp/$4 /usr/local/bin/$2 ; } && \
Expand Down

0 comments on commit 3b9656e

Please sign in to comment.