mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
remove extra layer of quotes
This commit is contained in:
parent
864ae3b936
commit
a75af513c1
1 changed files with 4 additions and 4 deletions
|
@ -41,13 +41,13 @@ fn main() {
|
|||
fs::copy(&libc_path, &out_file).unwrap();
|
||||
|
||||
println!(
|
||||
"cargo:rustc-env=WASI_LIBC_PATH=\"{}\"",
|
||||
out_file.to_str().unwrap().replace('\\', "\\\\")
|
||||
"cargo:rustc-env=WASI_LIBC_PATH={}",
|
||||
out_file.to_str().unwrap()
|
||||
);
|
||||
|
||||
println!(
|
||||
"cargo:rustc-env=WASI_COMPILER_RT_PATH=\"{}\"",
|
||||
compiler_rt_path.to_str().unwrap().replace('\\', "\\\\")
|
||||
"cargo:rustc-env=WASI_COMPILER_RT_PATH={}",
|
||||
compiler_rt_path.to_str().unwrap()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue