diff options
-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 |