Skip to content

Commit 7d5f39d

Browse files
committed
Print environment before installing SDK
1 parent fc5fa8b commit 7d5f39d

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "renkit"
3-
version = "6.0.0"
3+
version = "5.1.0-alpha.5"
44
edition = "2021"
55
repository = "https://github.com/kobaltcore/renkit"
66
description = "A collection of tools to help you organise and use Ren'Py instances from the command line."

src/renutil.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,12 @@ pub async fn install(
708708

709709
let mut cmd = Command::new(&python);
710710
cmd.args(["-EO", "android.py", "installsdk"]);
711+
712+
println!("Environment");
713+
for (k, v) in std::env::vars() {
714+
println!("{k} = {v}");
715+
}
716+
711717
let status = cmd.status()?;
712718
if !status.success() {
713719
anyhow::bail!("Unable to install Android SDK.");

0 commit comments

Comments
 (0)