From d23717dc6cd9345dcb5c65a041e8a739906e2157 Mon Sep 17 00:00:00 2001 From: epi Date: Tue, 15 Jun 2021 11:32:00 -0500 Subject: [PATCH] troubleshooting build script --- build.rs | 4 ++++ 1 file changed, 4 insertions(+) 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 }