From db8dd97bf3f1b6a374dc84b712962ebe1ed0d018 Mon Sep 17 00:00:00 2001 From: segfault-magnet Date: Thu, 5 Dec 2024 10:38:13 +0100 Subject: [PATCH] add debug for script version checker --- scripts/fuel-core-version/src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/fuel-core-version/src/main.rs b/scripts/fuel-core-version/src/main.rs index c3d329f73f..d8ad846531 100644 --- a/scripts/fuel-core-version/src/main.rs +++ b/scripts/fuel-core-version/src/main.rs @@ -74,6 +74,9 @@ fn main() -> Result<()> { command, manifest_path, } = App::parse(); + + let contents = std::fs::read_to_string(&manifest_path).unwrap(); + eprintln!("Debug this: {contents}"); let version = get_version_from_toml(&manifest_path)?; let version_file_path = get_version_file_path(&manifest_path)?; match command {