From 46e661280a5c9bda02ec8abaf2298e44d1c0b221 Mon Sep 17 00:00:00 2001 From: Slava <20563034+veaceslavdoina@users.noreply.github.com> Date: Fri, 8 Nov 2024 12:29:05 +0200 Subject: [PATCH] Fix installation commands for Windows (#9) --- README.md | 10 +++++----- index.html | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d72edb5..e4aed03 100644 --- a/README.md +++ b/README.md @@ -31,25 +31,25 @@ curl -s https://get.codex.storage/install.sh | bash -s help ```batch :: latest version -curl -s https://get.codex.storage/install.cmd && install.cmd +curl -sO https://get.codex.storage/install.cmd && install.cmd ``` ```batch :: specific version -curl -s https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd +curl -sO https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd ``` ```batch :: latest codex and cirdl -curl -s https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & install.cmd +curl -sO https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & install.cmd ``` ```batch :: codex and cirdl without libraries -curl -s https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & set WINDOWS_LIBS=true & install.cmd +curl -sO https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & set WINDOWS_LIBS=true & install.cmd ``` ```batch :: help -curl -s https://get.codex.storage/install.cmd && install.cmd help +curl -sO https://get.codex.storage/install.cmd && install.cmd help ``` diff --git a/index.html b/index.html index cf76ca1..15769c7 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@

- Get Codex - Linux/macOS + Get Codex - Linux, macOS and Windows (msys2)

@@ -58,7 +58,7 @@ # latest version
- curl -s https://get.codex.storage/install.cmd && install.cmd + curl -sO https://get.codex.storage/install.cmd && install.cmd

@@ -66,7 +66,7 @@ # specific version
- curl -s https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd + curl -sO https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd

@@ -74,7 +74,7 @@ # latest codex and cirdl
- curl -s https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true install.cmd + curl -sO https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true install.cmd

@@ -82,7 +82,7 @@ # codex and cirdl without libraries
- curl -s https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & set WINDOWS_LIBS=false & install.cmd + curl -sO https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & set WINDOWS_LIBS=false & install.cmd