Skip to content

Commit

Permalink
Fix stellar-cli version (#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored Dec 6, 2024
1 parent 727598a commit 5c461b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/StellarCliVersion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import CodeBlock from "@theme/CodeBlock";
import { latestVersion } from "@site/src/helpers/stellarCli";

export function StellarCliVersion() {
const command = `cargo install --locked stellar-cli --version v${latestVersion} --features opt`;
const command = `cargo install --locked stellar-cli@${latestVersion} --features opt`;

return <CodeBlock language="sh">{command}</CodeBlock>;
}

0 comments on commit 5c461b0

Please sign in to comment.