mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 07:19:41 +02:00
* feat(build): introducing buildx for Windows * feat(build): re-ordered USER * feat(build): Fixed Typo * feat(build): fixed typo Co-authored-by: ssbkang <skan070@gmail.com>
15 lines
470 B
Bash
Executable file
15 lines
470 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
PLATFORM=$1
|
|
ARCH=$2
|
|
KOMPOSE_VERSION=$3
|
|
|
|
if [ "${PLATFORM}" == 'linux' ]; then
|
|
wget -O "dist/kompose" "https://github.com/kubernetes/kompose/releases/download/${KOMPOSE_VERSION}/kompose-${PLATFORM}-${ARCH}"
|
|
chmod +x "dist/kompose"
|
|
elif [ "${PLATFORM}" == 'windows' ]; then
|
|
wget -O "dist/kompose.exe" "https://github.com/kubernetes/kompose/releases/download/${KOMPOSE_VERSION}/kompose-windows-amd64.exe"
|
|
chmod +x "dist/kompose.exe"
|
|
fi
|
|
|
|
exit 0
|