diff --git a/tools/src/bin/archive.rs b/tools/src/bin/archive.rs index b5ab1db9a3..5e6291417a 100644 --- a/tools/src/bin/archive.rs +++ b/tools/src/bin/archive.rs @@ -17,6 +17,7 @@ fn main() -> Result<()> { .required(false) .help("Set the upper limit for how large the image can become (default 64 MiB)."), ) + // TODO: support non-utf8 paths (applies to other paths as well) .arg( Arg::new("SOURCE") .required(true) diff --git a/tools/src/bin/dump.rs b/tools/src/bin/dump.rs index fb97bc9cd2..414d58be0d 100644 --- a/tools/src/bin/dump.rs +++ b/tools/src/bin/dump.rs @@ -17,6 +17,7 @@ fn main() -> Result<()> { ) .get_matches(); + // TODO: support non-utf8 paths let source = matches .get_one::("IMAGE") .expect("expected the required arg IMAGE to exist");