Fix installation commands for Windows (#9)

This commit is contained in:
Slava 2024-11-08 12:29:05 +02:00 committed by GitHub
parent 76d6a3f621
commit 46e661280a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 10 deletions

View File

@ -31,25 +31,25 @@ curl -s https://get.codex.storage/install.sh | bash -s help
```batch ```batch
:: latest version :: latest version
curl -s https://get.codex.storage/install.cmd && install.cmd curl -sO https://get.codex.storage/install.cmd && install.cmd
``` ```
```batch ```batch
:: specific version :: 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 ```batch
:: latest codex and cirdl :: 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 ```batch
:: codex and cirdl without libraries :: 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 ```batch
:: help :: help
curl -s https://get.codex.storage/install.cmd && install.cmd help curl -sO https://get.codex.storage/install.cmd && install.cmd help
``` ```

View File

@ -14,7 +14,7 @@
<body> <body>
<h3> <h3>
Get Codex - Linux/macOS Get Codex - Linux, macOS and Windows (msys2)
</h3> </h3>
<p> <p>
@ -58,7 +58,7 @@
# latest version # latest version
</span> </span>
<br> <br>
curl -s https://get.codex.storage/install.cmd && install.cmd curl -sO https://get.codex.storage/install.cmd && install.cmd
</p> </p>
<p> <p>
@ -66,7 +66,7 @@
# specific version # specific version
</span> </span>
<br> <br>
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
</p> </p>
<p> <p>
@ -74,7 +74,7 @@
# latest codex and cirdl # latest codex and cirdl
</span> </span>
<br> <br>
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
</p> </p>
<p> <p>
@ -82,7 +82,7 @@
# codex and cirdl without libraries # codex and cirdl without libraries
</span> </span>
<br> <br>
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
</p> </p>
</body> </body>
</html> </html>