diff --git a/.github/workflows/test-install.yml b/.github/workflows/test-install.yml index 00075ba7..63cefce9 100644 --- a/.github/workflows/test-install.yml +++ b/.github/workflows/test-install.yml @@ -20,7 +20,7 @@ jobs: - ubuntu-20.04 # - macos-14 # Docker install suported yet # - macos-13 # Couldn't have a stable install of Docker on Mac yet, docker build keeps failing as if command is not recognized... - # - macos-12 + - macos-12 steps: - name: Checkout repository diff --git a/cloudypad.sh b/cloudypad.sh index 22d2a60f..8647154a 100755 --- a/cloudypad.sh +++ b/cloudypad.sh @@ -54,12 +54,12 @@ RUN if [ "$(id -u $HOST_UID)" -ne 0 ] >/dev/null 2>&1; then \ USER $HOST_UID EOF -container_build_output=$(docker buildx build -t $CLOUDYPAD_TARGET_IMAGE - < /tmp/Dockerfile-cloudypad-run 2>&1) +container_build_output=$(docker build -t $CLOUDYPAD_TARGET_IMAGE - < /tmp/Dockerfile-cloudypad-run 2>&1) container_build_result=$? if [ $container_build_result -ne 0 ]; then echo "Error: could not build CloudyPad container image, build exited with code: $container_build_result" >&2 - echo "Build command was: docker buildx build -t $CLOUDYPAD_TARGET_IMAGE - < /tmp/Dockerfile-cloudypad-run 2>&1" >&2 + echo "Build command was: docker build -t $CLOUDYPAD_TARGET_IMAGE - < /tmp/Dockerfile-cloudypad-run 2>&1" >&2 echo "Build output: " echo "$container_build_output" echo