Skip to content

Commit

Permalink
fix(host)!: disable builtins
Browse files Browse the repository at this point in the history
  • Loading branch information
brooksmtownsend committed Feb 7, 2025
1 parent 2956016 commit 2cf4341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/host/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl AsRef<str> for ResourceRef<'_> {
// valid string
ResourceRef::File(path) => path.to_str().expect("invalid file reference URL"),
ResourceRef::Oci(s) => s,
ResourceRef::Builtin(s) => s,
ResourceRef::Builtin(_s) => panic!("no more builtins"),
}
}
}
Expand Down

0 comments on commit 2cf4341

Please sign in to comment.