diff --git a/README.md b/README.md index 26277f3..772e512 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,13 @@ -# typst_install +# Typst installer -🤖 `curl | sh` installer script for Typst +🤖 `curl | sh` installer script for Typst \ +💡 Inspired by [denoland/deno_install]
```sh
# ✨🚀
-curl -fsSL https://typst.community/typst_install/install.sh | sh
+curl -fsSL https://typst.community/typst-install/install.sh | sh
typst compile paper.typ
```
@@ -27,13 +28,13 @@ instructions] and download a binary from [typst/typst releases].
Linux, macOS, WSL
```sh
-curl -fsSL https://typst.community/typst_install/install.sh | sh
+curl -fsSL https://typst.community/typst-install/install.sh | sh
```
Windows
```ps1
-irm https://typst.community/typst_install/install.ps1 | iex
+irm https://typst.community/typst-install/install.ps1 | iex
```
Change install location@@ -41,15 +42,15 @@ irm https://typst.community/typst_install/install.ps1 | iex Linux, macOS, WSL ```sh -export TYPST_INSTALL="/usr/local" -curl -fsSL https://typst.community/typst_install/install.sh | sh +export typst-install="/usr/local" +curl -fsSL https://typst.community/typst-install/install.sh | sh ``` Windows ```ps1 $Env:TypstInstall = "C:\Program Files\typst" -irm https://typst.community/typst_install/install.ps1 | iex +irm https://typst.community/typst-install/install.ps1 | iex ``` |