Skip to content

Commit

Permalink
Fix installation of compose switch
Browse files Browse the repository at this point in the history
  • Loading branch information
dcflachs committed Oct 3, 2021
1 parent b477408 commit 3378208
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/pkg_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ rm docker-compose-linux-x86_64

#Install compose switch
wget --no-check-certificate https://github.com/docker/compose-switch/releases/download/v${COMPOSE_SWITCH_VERSION}/docker-compose-linux-amd64
cp docker-compose-linux-amd64 /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
mkdir -p $tmpdir/usr/local/bin
cp docker-compose-linux-amd64 $tmpdir/usr/local/bin/docker-compose
chmod +x $tmpdir/usr/local/bin/docker-compose
rm docker-compose-linux-amd64

makepkg -l y -c y $OUTPUT_FOLDER/compose.manager-package-${version}.txz
Expand Down

0 comments on commit 3378208

Please sign in to comment.