Skip to content

Commit 3d1cd2f

Browse files
committed
Added static folder to gitignore, update path for wasm on makefile
1 parent 943c355 commit 3d1cd2f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@
1919

2020
# Output
2121
/dist/
22+
/static/

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ GOROOT:=$(shell go env GOROOT)
1919
# make import: copy the required wasm_exec.js file from the Go toolchain (output in vendor/)
2020
import = vendor/wasm_exec.js
2121

22-
$(import): $(GOROOT)/misc/wasm/wasm_exec.js
22+
$(import): $(GOROOT)/lib/wasm/wasm_exec.js
2323
mkdir -p vendor
24-
cp "$(GOROOT)/misc/wasm/wasm_exec.js" vendor/
24+
cp "$(GOROOT)/lib/wasm/wasm_exec.js" vendor/
2525

2626
import: $(import)
2727

0 commit comments

Comments
 (0)