diff --git a/build.rs b/build.rs index 5add57b..4dc6a3b 100644 --- a/build.rs +++ b/build.rs @@ -55,6 +55,10 @@ fn main() { // - linux: $XDG_CONFIG_HOME or $HOME/.config // - macOS: $HOME/Library/Application Support // - windows: {FOLDERID_RoamingAppData} + println!( + "did we find it? {}", + std::env::var("IN_PIPELINE").unwrap_or(String::from("no")) + ); if std::env::var("IN_PIPELINE").is_ok() { return; // only copy the config file when we're not running in the CI/CD pipeline }