summaryrefslogtreecommitdiff
path: root/docs/getting_started/installation.md
diff options
context:
space:
mode:
authorChris Knight <cknight1234@gmail.com>2020-05-26 12:12:07 +0100
committerGitHub <noreply@github.com>2020-05-26 13:12:07 +0200
commit9090023c33de7b64ae41425db71c9ab4d5b1237f (patch)
tree917fa6901391bf4ef12d52d5232b2355bd6ce2b3 /docs/getting_started/installation.md
parent4e92ef7dc9e1d223d9f3099b94579c2b17e4ef9e (diff)
docs: "Getting started" manual updates (#5835)
Diffstat (limited to 'docs/getting_started/installation.md')
-rw-r--r--docs/getting_started/installation.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/getting_started/installation.md b/docs/getting_started/installation.md
index 158e18133..7d39e4251 100644
--- a/docs/getting_started/installation.md
+++ b/docs/getting_started/installation.md
@@ -59,11 +59,22 @@ Use `deno help` to see help text documenting Deno's flags and usage. Use
### Updating
-To update a previously installed version of Deno, you can run `deno upgrade`.
+To update a previously installed version of Deno, you can run:
+
+```shell
+deno upgrade
+```
+
This will fetch the latest release from
[github.com/denoland/deno/releases](https://github.com/denoland/deno/releases),
unzip it, and replace your current executable with it.
+You can also use this utility to install a specific version of Deno:
+
+```shell
+deno upgrade --version 1.0.1
+```
+
### Building from source
Information about how to build from source can be found in the `Contributing`