wasm compiler path fix

This commit is contained in:
Anton-4 2022-07-02 14:00:42 +02:00
parent 9b4529bf25
commit 6b56061b91
No known key found for this signature in database
GPG Key ID: C954D6E0F9C0ABFD

View File

@ -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)