Skip to content

Commit

Permalink
add debug for script version checker
Browse files Browse the repository at this point in the history
  • Loading branch information
segfault-magnet committed Dec 5, 2024
1 parent 7c3c8e0 commit db8dd97
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/fuel-core-version/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit db8dd97

Please sign in to comment.