set file extension for download_list

This commit is contained in:
Quaternions 2024-05-31 04:45:40 -07:00
parent 13786f941b
commit 8e933111e4

View File

@ -205,6 +205,7 @@ async fn main()->AResult<()>{
subcommand.asset_ids.into_iter().map(|asset_id|{
let mut path=output_folder.clone();
path.push(asset_id.to_string());
path.set_extension("rbxm");
(asset_id,path)
}).collect()
).await