Skip to content

Commit

Permalink
Update to version 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyraymond committed Jul 24, 2018
1 parent e660d24 commit 3189335
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /joal/

RUN apt-get update \
&& apt-get install -y ca-certificates curl \
&& JOAL_VERSION="2.1.4" \
&& JOAL_VERSION="2.1.5" \
&& curl -LO "https://github.com/anthonyraymond/joal/releases/download/v$JOAL_VERSION/joal.tar.gz" \
&& tar --wildcards -zxvf joal.tar.gz "jack-of-all-trades-$JOAL_VERSION.jar" \
&& mv "jack-of-all-trades-$JOAL_VERSION.jar" joal.jar \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm32v7
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /joal/

RUN apt-get update \
&& apt-get install -y ca-certificates curl \
&& JOAL_VERSION="2.1.4" \
&& JOAL_VERSION="2.1.5" \
&& curl -LO "https://github.com/anthonyraymond/joal/releases/download/v$JOAL_VERSION/joal.tar.gz" \
&& tar --wildcards -zxvf joal.tar.gz "jack-of-all-trades-$JOAL_VERSION.jar" \
&& mv "jack-of-all-trades-$JOAL_VERSION.jar" joal.jar \
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.araymond.joal</groupId>
<artifactId>jack-of-all-trades</artifactId>
<version>2.1.4</version>
<version>2.1.5</version>
<packaging>jar</packaging>

<name>jack-of-all-trades</name>
Expand Down
4 changes: 2 additions & 2 deletions publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ if ! grep -Fq "JOAL_VERSION=\"$tagName\"" ./Dockerfile; then
echo -e "$(tput setaf 1)WOW, wait! The provided tag does not match the Dockerfile version$(tput sgr0)"
exit 1
fi
if ! grep -Fq "JOAL_VERSION=\"$tagName\"" ./Dockerfile.arm; then
echo -e "$(tput setaf 1)WOW, wait! The provided tag does not match the Dockerfile.arm version$(tput sgr0)"
if ! grep -Fq "JOAL_VERSION=\"$tagName\"" ./Dockerfile.arm32v7; then
echo -e "$(tput setaf 1)WOW, wait! The provided tag does not match the Dockerfile.arm32v7 version$(tput sgr0)"
exit 1
fi

Expand Down

0 comments on commit 3189335

Please sign in to comment.