summaryrefslogtreecommitdiff
path: root/std/manual.md
diff options
context:
space:
mode:
authorChris Knight <cknight1234@gmail.com>2020-03-06 14:14:58 +0000
committerGitHub <noreply@github.com>2020-03-06 09:14:58 -0500
commitbb3d9c8280912f6e30692477aeb5331fb359d993 (patch)
tree9011537b9d432a3a96407acedb595fb77128723d /std/manual.md
parente81fb25b7aac5fcb20eeed3892eaf05d17944295 (diff)
doc: Update manual with suggestions for when cargo isn't building properly (#4252)
Diffstat (limited to 'std/manual.md')
-rw-r--r--std/manual.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/std/manual.md b/std/manual.md
index c95257701..3364cfb67 100644
--- a/std/manual.md
+++ b/std/manual.md
@@ -1619,6 +1619,9 @@ Build with Cargo:
# Build:
cargo build -vv
+# Build errors? Ensure you have latest master and try building again, or if that doesn't work try:
+cargo clean && cargo build -vv
+
# Run:
./target/debug/deno cli/tests/002_hello.ts
```