tweak prompt

This commit is contained in:
Quaternions 2023-09-14 17:05:22 -07:00
parent 54c26d6e1e
commit 8fd5618af2

View File

@ -381,7 +381,7 @@ fn upload() -> BoxResult<()>{
//Creator: [auto fill creator]
//DisplayName: [auto fill DisplayName]
//id: ["New" for blank because of my double enter key]
print!("Model name: {}\nCreator: {}\nDisplayName: {}\nAsset Id: ",modelname,creator,displayname);
print!("Model name: {}\nCreator: {}\nDisplayName: {}\nAction or Upload Asset Id: ",modelname,creator,displayname);
std::io::Write::flush(&mut std::io::stdout())?;
let upload_action;
loop{
@ -391,7 +391,7 @@ fn upload() -> BoxResult<()>{
upload_action=parsed_upload_action;
break;
}else{
print!("Asset Id: ");
print!("Action or Upload Asset Id: ");
std::io::Write::flush(&mut std::io::stdout())?;
}
}