Skip to content

Commit

Permalink
use absolute image path in tags2img
Browse files Browse the repository at this point in the history
  • Loading branch information
wsyxbcl committed Jul 17, 2024
1 parent 83301ae commit bed81b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ fn main() -> anyhow::Result<()> {
image_path,
tag_type,
} => {
write_taglist(absolute_path(taglist_path)?, image_path, tag_type)?;
write_taglist(absolute_path(taglist_path)?, absolute_path(image_path)?, tag_type)?;
}
Commands::Capture { csv_path, output } => {
get_temporal_independence(absolute_path(csv_path)?, output)?;
Expand Down

0 comments on commit bed81b0

Please sign in to comment.