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
:: 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
```

View File

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