From e95b4c6b47fd4a39232f6444f4b20cc8067914fa Mon Sep 17 00:00:00 2001 From: Travis Glenn Hansen Date: Mon, 18 Mar 2024 15:46:16 -0600 Subject: [PATCH] fix kopia download path Signed-off-by: Travis Glenn Hansen --- docker/kopia-installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/kopia-installer.sh b/docker/kopia-installer.sh index 67f2a8e..d939153 100755 --- a/docker/kopia-installer.sh +++ b/docker/kopia-installer.sh @@ -21,7 +21,7 @@ if [ "$PLATFORM" = "linux/amd64" ]; then elif [ "$PLATFORM" = "linux/arm64" ]; then export PLATFORM_ARCH="arm64" elif [ "$PLATFORM" = "linux/arm/v7" ]; then - export PLATFORM_ARCH="armhv" + export PLATFORM_ARCH="armhf" else echo "unsupported/unknown kopia PLATFORM ${PLATFORM}" exit 0