Fix useless format! clippy warning in asset_snapshot

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-03-02 22:00:55 -05:00
parent cffb00bcdb
commit e911a60220

View file

@ -97,7 +97,7 @@ pub fn build_find_command(root: &str, platform: &str) -> String {
}
_ => {
// Linux: use -printf for size, mtime, and relative path
cmd.push_str(&format!(" -printf '%s\\t%T@\\t%P\\n'"));
cmd.push_str(" -printf '%s\\t%T@\\t%P\\n'");
}
}