Skip to content

Commit a43be64

Browse files
authored
Merge pull request #3399 from jkrech/patch-1
Update vcpkg installation commands with fixed release URLs
2 parents ffccac2 + 9e277c1 commit a43be64

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • content/learning-paths/embedded-and-microcontrollers/vcpkg-tool-installation

content/learning-paths/embedded-and-microcontrollers/vcpkg-tool-installation/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ To install the tool, open your favorite Terminal application and run one of the
1818

1919
{{< tabpane code=true >}}
2020
{{< tab header="Windows (cmd)" language="shell">}}
21-
curl -LO https://aka.ms/vcpkg-init.cmd && .\vcpkg-init.cmd
21+
curl -LO https://github.com/microsoft/vcpkg-tool/releases/download/2026-04-08/vcpkg-init.cmd && .\vcpkg-init.cmd
2222
{{< /tab >}}
2323
{{< tab header="Windows (PowerShell)" language="shell">}}
24-
iex (iwr -useb https://aka.ms/vcpkg-init.ps1)
24+
iex (iwr -useb https://github.com/microsoft/vcpkg-tool/releases/download/2026-04-08/vcpkg-init.ps1)
2525
{{< /tab >}}
2626
{{< tab header="Linux/macOS" language="shell">}}
27-
. <(curl https://aka.ms/vcpkg-init.sh -L)
27+
. <(curl https://github.com/microsoft/vcpkg-tool/releases/download/2026-04-08/vcpkg-init.sh -L)
2828
{{< /tab >}}
2929
{{< /tabpane >}}
3030

0 commit comments

Comments
 (0)