mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
wasm compiler path fix
This commit is contained in:
parent
9b4529bf25
commit
6b56061b91
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ use wasmer::{
|
|||
};
|
||||
use wasmer_wasi::WasiState;
|
||||
|
||||
const WASM_REPL_COMPILER_PATH: &str = "../target/wasm32-wasi/release/roc_repl_wasm.wasm";
|
||||
const WASM_REPL_COMPILER_PATH: &str = "../../target/wasm32-wasi/release/roc_repl_wasm.wasm";
|
||||
|
||||
thread_local! {
|
||||
static REPL_STATE: RefCell<Option<ReplState>> = RefCell::new(None)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue