From 34293d4754265e3129ee3e763ee020565e08fd01 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Wed, 19 Sep 2018 00:18:28 -0400 Subject: [PATCH] Quote path in case it has spaces. --- WebAssembly.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebAssembly.md b/WebAssembly.md index b9d97d10..ab39afa8 100644 --- a/WebAssembly.md +++ b/WebAssembly.md @@ -31,7 +31,7 @@ That will build the package and produce an executable WebAssembly module file ma Copy the JavaScript support file: ```sh -$ cp $(go env GOROOT)/misc/wasm/wasm_exec.js . +$ cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" . ``` Create an `index.html` file: