summaryrefslogtreecommitdiff
path: root/runtime/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/build.rs')
-rw-r--r--runtime/build.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/build.rs b/runtime/build.rs
index 920aafc9f..b1d4fa8cb 100644
--- a/runtime/build.rs
+++ b/runtime/build.rs
@@ -83,7 +83,10 @@ mod not_docs {
}
impl deno_ffi::FfiPermissions for Permissions {
- fn check(&mut self, _path: &str) -> Result<(), deno_core::error::AnyError> {
+ fn check(
+ &mut self,
+ _path: &Path,
+ ) -> Result<(), deno_core::error::AnyError> {
unreachable!("snapshotting!")
}
}