Skip to content

Commit

Permalink
Merge pull request #24 from casweeney/nit
Browse files Browse the repository at this point in the history
Removed unused comments
  • Loading branch information
casweeney authored Apr 28, 2024
2 parents 884d333 + c7ab74a commit 381e997
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,16 +209,8 @@ pub fn resolve(args: ClapperArgs) -> Result<(), Box<dyn Error>> {
}
}
},
// InstallSubCommand::Snfoundry => {
// match install_snforge() {
// Ok(_) => println!("{}", "Starknet Foundry installatin successful!".bright_blue()),
// Err(e) => {
// return Err(e)
// }
// }
// },
InstallSubCommand::Snfoundry(ver) => {
match install_snforge(ver.version_name.clone()) {
InstallSubCommand::Snfoundry(version) => {
match install_snforge(version.version_name.clone()) {
Ok(_) => println!("{}", "Starknet Foundry installation successful!".bright_blue()),
Err(e) => {
return Err(e)
Expand Down

0 comments on commit 381e997

Please sign in to comment.