From 302881bfef5c8be60401277c5d214f44f31aa080 Mon Sep 17 00:00:00 2001 From: volodymyrZotov Date: Wed, 10 Aug 2022 11:42:31 +0300 Subject: [PATCH] use correct op cli version fo linux --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index bd511ec..0757466 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -31,7 +31,7 @@ unset_prev_secrets() { # Install op-cli install_op_cli() { if [[ "$OSTYPE" == "linux-gnu"* ]]; then - curl -sSfLo op.zip "https://bucket.agilebits.com/cli-private-beta/v2/op_linux_amd64_v2-alpha2.zip" + 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" fi