Skip to content

Commit

Permalink
CI: release channel mixup in #524
Browse files Browse the repository at this point in the history
  • Loading branch information
mratsim committed Jan 26, 2025
1 parent 6cd8bdd commit 4757592
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/install_nim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -303,13 +303,13 @@ function download-release() {
case "${OS}" in
Linux)
url="https://nim-lang.org/download/nim-${NIM_VERSION}-linux_${CPU_ARCH}.tar.xz"
download "${url}" nim.zip
unzip -q nim.zip
download "${url}" nim.tar.xz
tar xJf nim.tar.xz
;;
Windows)
url="https://nim-lang.org/download/nim-${NIM_VERSION}_${CPU_ARCH}.zip"
download "${url}" nim.tar.xz
tar xJf nim.tar.xz
download "${url}" nim.zip
/c/Windows/System32/tar.exe -xf nim.zip
;;
*)
err "Invalid OS, prebuilt binaries are not available for '${OS}'"
Expand Down

0 comments on commit 4757592

Please sign in to comment.