Skip to content

Commit

Permalink
Use 'gpg' as opposed to explicit 'gpg2'
Browse files Browse the repository at this point in the history
Travis was failing due to being unable to find 'gpg2' and gpg is already
an alias for gpg2 in the base image. Thanks to zakame++ for
verification.
  • Loading branch information
jstuder-gh committed Aug 9, 2018
1 parent 91de061 commit 944167b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ RUN buildDeps=' \
\
&& curl -fsSL ${url}.asc -o ${tmpdir}/rakudo.tar.gz.asc \
&& curl -fsSL $url -o ${tmpdir}/rakudo.tar.gz \
&& gpg2 --keyserver $keyserver --recv-keys $keyfp \
&& gpg2 --batch --verify ${tmpdir}/rakudo.tar.gz.asc ${tmpdir}/rakudo.tar.gz \
&& gpg --keyserver $keyserver --recv-keys $keyfp \
&& gpg --batch --verify ${tmpdir}/rakudo.tar.gz.asc ${tmpdir}/rakudo.tar.gz \
\
&& tar xzf ${tmpdir}/rakudo.tar.gz --strip-components=1 -C ${tmpdir}/rakudo \
&& ( \
Expand Down

0 comments on commit 944167b

Please sign in to comment.