@@ -139,12 +139,12 @@ macOS will block unsigned executables. You have several options:
139139
140140** Option 1: Remove quarantine attribute (Recommended)**
141141``` bash
142- # Download the file ( replace VERSION with actual version, e.g., v0.9.20)
142+ # Download the latest release (or replace 'latest' with a specific version like ' v0.9.20' )
143143# For Apple Silicon Macs:
144- curl -L -o cassandra-analyzer https://github.com/axonops/cassandra-analyzer/releases/download/VERSION /cassandra-analyzer-macos-arm64
144+ curl -L -o cassandra-analyzer https://github.com/axonops/cassandra-analyzer/releases/latest/download /cassandra-analyzer-macos-arm64
145145
146146# For Intel Macs:
147- curl -L -o cassandra-analyzer https://github.com/axonops/cassandra-analyzer/releases/download/VERSION /cassandra-analyzer-macos-amd64
147+ curl -L -o cassandra-analyzer https://github.com/axonops/cassandra-analyzer/releases/latest/download /cassandra-analyzer-macos-amd64
148148
149149# Remove quarantine attribute
150150xattr -d com.apple.quarantine cassandra-analyzer
@@ -186,11 +186,11 @@ Add-MpPreference -ExclusionPath "C:\path\to\cassandra-analyzer-windows-amd64.exe
186186
187187Linux typically doesn't block unsigned binaries, but ensure it's executable:
188188``` bash
189- # Download ( replace VERSION with actual version, e.g., v0.9.20)
190- wget https://github.com/axonops/cassandra-analyzer/releases/download/VERSION /cassandra-analyzer-linux-amd64
189+ # Download the latest release (or replace 'latest' with a specific version like ' v0.9.20' )
190+ wget https://github.com/axonops/cassandra-analyzer/releases/latest/download /cassandra-analyzer-linux-amd64
191191
192192# Or use curl
193- curl -L -o cassandra-analyzer https://github.com/axonops/cassandra-analyzer/releases/download/VERSION /cassandra-analyzer-linux-amd64
193+ curl -L -o cassandra-analyzer https://github.com/axonops/cassandra-analyzer/releases/latest/download /cassandra-analyzer-linux-amd64
194194
195195# Make executable
196196chmod +x cassandra-analyzer-linux-amd64 # or just 'cassandra-analyzer' if you used curl
0 commit comments