summaryrefslogtreecommitdiff
path: root/cli/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/build.rs')
-rw-r--r--cli/build.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/build.rs b/cli/build.rs
index d118dd5b9..98dea9b46 100644
--- a/cli/build.rs
+++ b/cli/build.rs
@@ -202,12 +202,12 @@ fn create_compiler_snapshot(
}
#[op]
- fn op_cwd(_state: &mut OpState, _args: Value) -> Result<Value, AnyError> {
+ fn op_cwd(_args: Value) -> Result<Value, AnyError> {
Ok(json!("cache:///"))
}
#[op]
- fn op_exists(_state: &mut OpState, _args: Value) -> Result<Value, AnyError> {
+ fn op_exists(_args: Value) -> Result<Value, AnyError> {
Ok(json!(false))
}