Skip to content

Commit

Permalink
(node) fixing println error
Browse files Browse the repository at this point in the history
  • Loading branch information
anusikh committed Jul 14, 2024
1 parent a16a4c1 commit 43a25ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/node/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::utils::file_utils::{
fn install_util(version: String, link: String) {
match check_node_exists(&version) {
false => {
println!(link);
println!("{}", link);
}
true => {
println!("node version exists already, if it doesn't run the clean command")
Expand All @@ -19,7 +19,7 @@ fn install_util(version: String, link: String) {
fn install_util(version: String, link: String) {
match check_node_exists(&version) {
false => {
println!(link);
println!("{}", link);
}
true => {
println!("node version exists already, if it doesn't run the clean command")
Expand Down

0 comments on commit 43a25ce

Please sign in to comment.