From 43f6c3e907366374afe5e660de9249c6a444dc1d Mon Sep 17 00:00:00 2001 From: andystopia <91233633+andystopia@users.noreply.github.com> Date: Wed, 27 Sep 2023 23:01:50 -0400 Subject: [PATCH] fix(paths): change absolute to relative path --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dc1d401..6571786 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -224,7 +224,7 @@ dependencies = [ [[package]] name = "gb" -version = "0.1.8" +version = "0.1.9" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index 1f9473a..bcde639 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gb" -version = "0.1.8" +version = "0.1.9" edition = "2021" repository = "https://github.com/andystopia/gb" diff --git a/src/main.rs b/src/main.rs index 41ab62b..c1a0d89 100644 --- a/src/main.rs +++ b/src/main.rs @@ -297,7 +297,7 @@ fn move_work_obj93_to_build_directory() -> Result<(), GbError> { let full = lines.join("\n"); - std::fs::write("/build/root/work-obj93.cf", full).fatal("could not move modified work-obj93.cf, but it is necessary to build ghdl")?; + std::fs::write("build/root/work-obj93.cf", full).fatal("could not move modified work-obj93.cf, but it is necessary to build ghdl")?; std::fs::remove_file("work-obj93.cf").fatal("could not remove work-obj93.cf")?;