From 1263fc888c1d7f9791ecce98aaa053fa52c9df49 Mon Sep 17 00:00:00 2001 From: volodymyrZotov Date: Wed, 10 Aug 2022 16:57:06 +0300 Subject: [PATCH] updated darwin op archive link --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 0757466..8caf9d9 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -33,7 +33,7 @@ install_op_cli() { if [[ "$OSTYPE" == "linux-gnu"* ]]; then curl -sSfLo op.zip "https://cache.agilebits.com/dist/1P/op2/pkg/v2.6.0-beta.06/op_linux_amd64_v2.6.0-beta.06.zip" elif [[ "$OSTYPE" == "darwin"* ]]; then - curl -sSfLo op.zip "https://bucket.agilebits.com/cli-private-beta/v2/op_darwin_amd64_v2-alpha2.zip" + curl -sSfLo op.zip "https://cache.agilebits.com/dist/1P/op2/pkg/v2.6.0-beta.06/1password-cli_v2.6.0-beta.06_darwin_arm64.tar.gz" fi unzip -od /usr/local/bin/ op.zip && rm op.zip }