From 5c461b0c03c747853c04fad39f9c49ff7842ff5c Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Sat, 7 Dec 2024 08:39:25 +1000 Subject: [PATCH] Fix stellar-cli version (#1116) --- src/components/StellarCliVersion.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/StellarCliVersion.tsx b/src/components/StellarCliVersion.tsx index 1d6d14781..1f6d90057 100644 --- a/src/components/StellarCliVersion.tsx +++ b/src/components/StellarCliVersion.tsx @@ -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 {command}; }