Skip to content
This repository was archived by the owner on Apr 4, 2026. It is now read-only.

Commit 3378208

Browse files
committed
Fix installation of compose switch
1 parent b477408 commit 3378208

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

source/pkg_build.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ rm docker-compose-linux-x86_64
2626

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

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

0 commit comments

Comments
 (0)