Skip to content

Commit 7142530

Browse files
committed
more debug
1 parent 6a0703f commit 7142530

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/uutests/src/lib/util.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1954,10 +1954,13 @@ impl UCommand {
19541954

19551955
// Check and list files in /project/target/ if it exists
19561956

1957-
#[cfg(not(windows))]
1957+
#[cfg(all(unix, not(target_os = "macos")))]
19581958
let path = "/project/target";
19591959
#[cfg(windows)]
19601960
let path = "D:\\a\\coreutils\\";
1961+
#[cfg(target_os = "macos")]
1962+
let path = "/Users/runner/work/coreutils/coreutils/";
1963+
19611964
let target_path = Path::new(path);
19621965
if target_path.exists() && target_path.is_dir() {
19631966
match fs::read_dir(target_path) {

0 commit comments

Comments
 (0)