diff --git a/build/download_docker_compose_binary.sh b/build/download_docker_compose_binary.sh index f12dd729e..8a6955815 100755 --- a/build/download_docker_compose_binary.sh +++ b/build/download_docker_compose_binary.sh @@ -21,10 +21,10 @@ fi if [[ "$PLATFORM" == "windows" ]]; then - wget -O "dist/docker-compose.plugin.exe" "https://github.com/docker/compose/releases/download/$COMPOSE_VERSION/docker-compose-windows-${ARCH}.exe" - chmod +x "dist/docker-compose.plugin.exe" + wget -O "dist/docker-compose.exe" "https://github.com/docker/compose/releases/download/$COMPOSE_VERSION/docker-compose-windows-${ARCH}.exe" + chmod +x "dist/docker-compose.exe" else - wget -O "dist/docker-compose.plugin" "https://github.com/docker/compose/releases/download/$COMPOSE_VERSION/docker-compose-${PLATFORM}-${ARCH}" - chmod +x "dist/docker-compose.plugin" + wget -O "dist/docker-compose" "https://github.com/docker/compose/releases/download/$COMPOSE_VERSION/docker-compose-${PLATFORM}-${ARCH}" + chmod +x "dist/docker-compose" fi