Skip to content

Commit

Permalink
fix(paths): change absolute to relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
andystopia committed Sep 28, 2023
1 parent 5536464 commit 43f6c3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gb"
version = "0.1.8"
version = "0.1.9"
edition = "2021"
repository = "https://github.com/andystopia/gb"

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")?;

Expand Down

0 comments on commit 43f6c3e

Please sign in to comment.