Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
JustusAdam committed Jul 26, 2023
1 parent fcd1fc0 commit 16d1292
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build -vv
run: cargo build --verbose
- name: Run tests
run: |
cargo test --test non_transitive_graph_tests
Expand Down
5 changes: 0 additions & 5 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ pub fn link_rustc_lib() {
let rustup_lib = [&rustup_home, "toolchains", &rustup_tc, "lib"]
.into_iter()
.collect::<PathBuf>();
eprint!("Found the library files: ");
for file in std::fs::read_dir(&rustup_lib).expect("Rustup lib dir does not exist") {
eprint!("{}, ", file.unwrap().file_name().to_string_lossy());
}
eprintln!();
add_link_search_path_for_compiler_binaries(rustup_lib.display());

// While we hard-code the above for development purposes, for a release/install we look
Expand Down

0 comments on commit 16d1292

Please sign in to comment.