Updates after rebase

This commit is contained in:
David Smith 2023-05-15 12:31:42 -04:00
parent d06d0dbf9c
commit e1e72a3713
No known key found for this signature in database
GPG key ID: 979D8D09D9570EED
2 changed files with 265 additions and 282 deletions

View file

@ -407,7 +407,7 @@ pub fn test(matches: &ArgMatches, triple: Triple) -> io::Result<i32> {
// Spawn the root task
if !path.exists() {
let current_dir = env::current_dir().unwrap();
let expected_file_path = current_dir.join(filename);
let expected_file_path = current_dir.join(path);
let current_dir_string = current_dir.display();
let expected_file_path_string = expected_file_path.display();
@ -545,7 +545,7 @@ pub fn build(
// Spawn the root task
if !path.exists() {
let current_dir = env::current_dir().unwrap();
let expected_file_path = current_dir.join(filename);
let expected_file_path = current_dir.join(path);
let current_dir_string = current_dir.display();
let expected_file_path_string = expected_file_path.display();