diff options
author | Vincent LE GOFF <g_n_s@hotmail.fr> | 2019-06-05 15:21:08 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-06-05 09:21:08 -0400 |
commit | 0b50c698ad898cd8fbdd1dc21956d584887fd87a (patch) | |
tree | ce0be67c2786b6ee95dfd18da7315fbf112f8220 | |
parent | a71305b4febc3d8db95d3d144ae3a64c023718f0 (diff) |
Add special hit cfix #1898 (#2455)
-rw-r--r-- | website/manual.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/website/manual.md b/website/manual.md index d8590e0f6..c5fe2f467 100644 --- a/website/manual.md +++ b/website/manual.md @@ -129,9 +129,20 @@ deno run https://deno.land/welcome.ts ### Build from source +Clone on Unix/MacOs + ```bash # Fetch deps. git clone --recurse-submodules https://github.com/denoland/deno.git +``` + +Clone on Windows (with Admin privileges) + +```bash +git clone -c core.symlinks=true --recurse-submodules https://github.com/denoland/deno.git +``` + +```bash cd deno ./tools/setup.py |