Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Oct 21, 2023
1 parent 9697fcd commit 909452e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub async fn download(client: Client, json: &Repo, id: String) -> () {

let version = find_version(module.versions.clone(), _ver);
println!("Downloading {}", module.name);
println!("Version: {}\n", version.version);
println!("Version: {}", version.version);

let name = get_last(_url);
let path = &[
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ pub async fn info(json: &Repo, id: String) {
);
println!("\x1B[1mDescription:\x1B[0m {}", module.description);
println!( "\x1B[1mLicense:\x1B[0m \x1B[36m{}\x1B[0m", module.track.license);
println!("\x1B[2mModule id: {}\x1B[0m\n", _id);
println!("\x1B[2mModule id: {}\x1B[0m", _id);
}

0 comments on commit 909452e

Please sign in to comment.