Skip to content
This repository has been archived by the owner on Apr 2, 2022. It is now read-only.

Commit

Permalink
use 'jar xvf' instead of 'unzip' (#14)
Browse files Browse the repository at this point in the history
due to fabric8io-images/s2i#184

but I would prefer it if fabric8io-images/s2i#185
fixed the regression instead of us (and other people...) having to adapt.
  • Loading branch information
vorburger authored and edewit committed Nov 9, 2018
1 parent 1b944cf commit 5ffee95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .s2i/bin/assemble
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ curl -sS -L -J -f -O https://github.com/NucleusPowered/Nucleus/releases/download
curl -sS -L -J -f -O http://ci.voxelmodpack.com/job/VoxelSniper/lastSuccessfulBuild/artifact/build/libs/VoxelSniper-8.5.0-SNAPSHOT.jar
# NB we don't have "git" in this S2I container, so:
# curl -sS -L -J -f -O https://github.com/TVPT/VoxelSniper/archive/sponge-1.12.zip
# unzip VoxelSniper-sponge-1.12.zip
# jar xvf VoxelSniper-sponge-1.12.zip
# cd VoxelSniper-sponge-1.12.zip
# ./gradlew build
# cp build/libs/*.jar ..
Expand All @@ -31,7 +31,7 @@ MagiBridge_repo=vorburger
# https://github.com/Eufranio/MagiBridge/issues/76
MagiBridge_REV=api-7_bug76-rm-mcclans
curl -sS -L -J -f -O https://github.com/$MagiBridge_repo/MagiBridge/archive/$MagiBridge_REV.zip
unzip MagiBridge-$MagiBridge_REV.zip
jar xvf MagiBridge-$MagiBridge_REV.zip
cd MagiBridge-$MagiBridge_REV
# https://github.com/Eufranio/MagiBridge/pull/74
chmod +x ./gradlew
Expand Down

0 comments on commit 5ffee95

Please sign in to comment.