fix str.zig finding

This commit is contained in:
Anton-4 2022-07-01 20:35:15 +02:00
parent e4d8c1e88e
commit 4fc2d808f3
No known key found for this signature in database
GPG key ID: C954D6E0F9C0ABFD
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@ pub fn link(
}
fn find_zig_str_path() -> PathBuf {
let zig_str_path = PathBuf::from("compiler/builtins/bitcode/src/str.zig");
let zig_str_path = PathBuf::from("crates/compiler/builtins/bitcode/src/str.zig");
if std::path::Path::exists(&zig_str_path) {
return zig_str_path;