Add artist_url to usage and output artist_url option as parameter option in usage output

This commit is contained in:
oSumAtrIX 2021-10-11 12:49:30 +02:00
parent ae34f4b7be
commit c9a4ab3e7d
No known key found for this signature in database
GPG key ID: A9B3094ACDB604B4
2 changed files with 2 additions and 2 deletions

View file

@ -48,7 +48,7 @@ Settings could not be loaded, because of the following error: IO: NotFound No su
$ down_on_spot.exe $ down_on_spot.exe
Usage: Usage:
down_on_spot.exe (track_url | album_url | playlist_url) down_on_spot.exe (track_url | album_url | playlist_url | artist_url)
``` ```
## Known issues ## Known issues

View file

@ -147,7 +147,7 @@ async fn start() {
println!("Finished download(s) in {} second(s).", time_elapsed); println!("Finished download(s) in {} second(s).", time_elapsed);
} else { } else {
println!( println!(
"Usage:\n{} (track_url | album_url | playlist_url)", "Usage:\n{} (track_url | album_url | playlist_url | artist_url )",
env::args() env::args()
.next() .next()
.as_ref() .as_ref()