summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRobby <robby@k-state.edu>2018-04-10 22:49:12 -0500
committerRobby <robby@k-state.edu>2018-04-10 22:49:12 -0500
commit52bc5aae75fdfe0ce74c357e5c601c4ea571b9ac (patch)
tree798431d9ed62f6962c28b9a9c778fa38acbdeb14 /docs
parentb41a09426c03167a883cfb8a3ac3165d99aac056 (diff)
downloadmill-52bc5aae75fdfe0ce74c357e5c601c4ea571b9ac.tar.gz
mill-52bc5aae75fdfe0ce74c357e5c601c4ea571b9ac.tar.bz2
mill-52bc5aae75fdfe0ce74c357e5c601c4ea571b9ac.zip
Updated Windows and Manual installation doc.
Diffstat (limited to 'docs')
-rw-r--r--docs/pages/1 - Intro to Mill.md16
1 files changed, 7 insertions, 9 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index c11d9de1..495c3c30 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -35,7 +35,7 @@ pacaur -S mill
### Windows
-To get started, download Mill from: https://github.com/lihaoyi/mill/releases/download/0.1.8/0.1.8,
+To get started, download Mill from: https://github.com/lihaoyi/mill/releases/download/0.2.0/0.2.0,
and save it as `mill.bat`.
Mill also works on a sh environment on Windows (e.g.,
@@ -45,15 +45,13 @@ Mill also works on a sh environment on Windows (e.g.,
[WSL](https://docs.microsoft.com/en-us/windows/wsl);
to get started, follow the instructions in the [manual](#manual) section below. Note that:
-* In some environments (such as WSL), mill has be run using interactive mode (`-i`)
+* In some environments (such as WSL), mill might have to be run using interactive mode (`-i`)
-* Git-Bash: run the instruciton in administrator mode instead of `sudo`
+* On Cygwin, run the following after downloading mill:
-* Cygwin: run the following after downloading mill:
-
- ```bash
- sed -i '0,/-cp "\$0"/{s/-cp "\$0"/-cp `cygpath -w "\$0"`/}; 0,/-cp "\$0"/{s/-cp "\$0"/-cp `cygpath -w "\$0"`/}' /usr/local/bin/mill
- ```
+```bash
+sed -i '0,/-cp "\$0"/{s/-cp "\$0"/-cp `cygpath -w "\$0"`/}; 0,/-cp "\$0"/{s/-cp "\$0"/-cp `cygpath -w "\$0"`/}' /usr/local/bin/mill
+```
### Manual
@@ -61,7 +59,7 @@ To get started, download Mill and install it into your system via the following
`curl`/`chmod` command:
```bash
-sudo curl -L -o /usr/local/bin/mill https://github.com/lihaoyi/mill/releases/download/0.1.7/0.1.7 && sudo chmod +x /usr/local/bin/mill
+sudo sh -c '(echo "#!/usr/bin/env sh" && curl -L https://github.com/lihaoyi/mill/releases/download/0.2.0/0.2.0) > /usr/local/bin/mill && chmod +x /usr/local/bin/mill'
```
### Development Releases