From efbc0c439e77c4908e843503b531e6245c07c788 Mon Sep 17 00:00:00 2001 From: morde Date: Fri, 23 Aug 2024 10:55:06 +0300 Subject: [PATCH] print current dir for debugging --- src/handlers/install_handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/install_handler.rs b/src/handlers/install_handler.rs index 2ae170f..39abc8a 100644 --- a/src/handlers/install_handler.rs +++ b/src/handlers/install_handler.rs @@ -247,8 +247,8 @@ async fn handle_rollback(config: &Config) -> Result<()> { } } + println!("Current working directory: {:?}", env::current_dir()); let nightly_file = fs::read_to_string("nightly/bob.json").await?; - println!("hello i am here"); let mut json_struct: UpstreamVersion = serde_json::from_str(&nightly_file)?; let id: String = json_struct .target_commitish