summaryrefslogtreecommitdiff
path: root/dhall/src/imports.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dhall/src/imports.rs')
-rw-r--r--dhall/src/imports.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/dhall/src/imports.rs b/dhall/src/imports.rs
index ea3ef01..9ae66a7 100644
--- a/dhall/src/imports.rs
+++ b/dhall/src/imports.rs
@@ -35,6 +35,7 @@ fn resolve_import(
Local(prefix, path) => {
let path = match prefix {
Parent => cwd.parent().unwrap().join(path),
+ Here => cwd.join(path),
_ => unimplemented!("{:?}", import),
};
load_dhall_file(&path, true)