Skip to content

Commit

Permalink
tmp: print vars
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasbishop committed Jul 12, 2022
1 parent 39a329c commit d7d170c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,13 @@ fn test_latest_release() -> Result<()> {
fn main() -> Result<()> {
let opt = Opt::parse();

// TODO:
println!("=======VARS=======");
for (k, v) in std::env::vars() {
println!("{}={}", k, v);
}
println!("=======VARS=======");

match &opt.action {
Action::Build(build_opt) => build(build_opt),
Action::Clippy(clippy_opt) => clippy(clippy_opt),
Expand Down

0 comments on commit d7d170c

Please sign in to comment.