From aa667d48e4e1c5d12ec66ccb05cc554017eea56a Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Wed, 11 Feb 2026 14:00:20 +0100 Subject: [PATCH] Add rama proxy feature flag --- install-scripts/install-safe-chain.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install-scripts/install-safe-chain.sh b/install-scripts/install-safe-chain.sh index 4c4718e..960691e 100755 --- a/install-scripts/install-safe-chain.sh +++ b/install-scripts/install-safe-chain.sh @@ -237,6 +237,9 @@ parse_arguments() { --include-python) warn "--include-python is deprecated and ignored. Python ecosystem is now included by default." ;; + --experimental-rama-proxy) + USE_RAMA_PROXY=true + ;; *) error "Unknown argument: $arg" ;; @@ -248,6 +251,7 @@ parse_arguments() { main() { # Initialize argument flags USE_CI_SETUP=false + USE_RAMA_PROXY=false # Parse command-line arguments parse_arguments "$@" @@ -329,7 +333,7 @@ main() { info "Binary installed to: $FINAL_FILE" # Download safechain-proxy - if [ "$OS" = "macos" ] || [ "$OS" = "linux" ] || [ "$OS" = "linuxstatic" ]; then + if [ "$USE_RAMA_PROXY" = "true" ] && { [ "$OS" = "macos" ] || [ "$OS" = "linux" ] || [ "$OS" = "linuxstatic" ]; }; then info "Downloading safechain-proxy..." if [ "$OS" = "macos" ]; then