Skip to content

Commit d7d170c

Browse files
tmp: print vars
1 parent 39a329c commit d7d170c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Diff for: xtask/src/main.rs

+7
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,13 @@ fn test_latest_release() -> Result<()> {
188188
fn main() -> Result<()> {
189189
let opt = Opt::parse();
190190

191+
// TODO:
192+
println!("=======VARS=======");
193+
for (k, v) in std::env::vars() {
194+
println!("{}={}", k, v);
195+
}
196+
println!("=======VARS=======");
197+
191198
match &opt.action {
192199
Action::Build(build_opt) => build(build_opt),
193200
Action::Clippy(clippy_opt) => clippy(clippy_opt),

0 commit comments

Comments
 (0)