aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tour.gleam4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tour.gleam b/src/tour.gleam
index 5738bcf..e34cf77 100644
--- a/src/tour.gleam
+++ b/src/tour.gleam
@@ -22,7 +22,7 @@ const stdlib_sources = "build/packages/gleam_stdlib/src/gleam"
const stdlib_external = "build/packages/gleam_stdlib/src"
-const compiler_wasm = "../gleam/compiler-wasm/pkg"
+const compiler_wasm = "./wasm-compiler"
const content_path = "src/content"
@@ -333,7 +333,7 @@ fn add_prev_next_for_chapter(
fn copy_wasm_compiler() -> snag.Result(Nil) {
use <- require(
simplifile.is_directory(compiler_wasm),
- "compiler-wasm/pkg must have been compiled",
+ "compiler-wasm must have been compiled",
)
simplifile.copy_directory(compiler_wasm, public <> "/compiler")