Skip to content

Commit 4cb9323

Browse files
committed
docs
1 parent 68c25ef commit 4cb9323

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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
150150
xattr -d com.apple.quarantine cassandra-analyzer
@@ -186,11 +186,11 @@ Add-MpPreference -ExclusionPath "C:\path\to\cassandra-analyzer-windows-amd64.exe
186186

187187
Linux 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
196196
chmod +x cassandra-analyzer-linux-amd64 # or just 'cassandra-analyzer' if you used curl

0 commit comments

Comments
 (0)