Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Name change for .NET
Browse files Browse the repository at this point in the history
  • Loading branch information
r-darwish committed Dec 26, 2020
1 parent a519bc5 commit 47481ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ fn run() -> Result<()> {
)))]
runner.execute(Step::Atom, "apm", || generic::run_apm(run_type))?;
runner.execute(Step::Rustup, "rustup", || generic::run_rustup(&base_dirs, run_type))?;
runner.execute(Step::Dotnet, "dotnet", || generic::run_dotnet_upgrade(&ctx))?;
runner.execute(Step::Dotnet, ".NET", || generic::run_dotnet_upgrade(&ctx))?;
runner.execute(Step::Choosenim, "choosenim", || generic::run_choosenim(&ctx))?;
runner.execute(Step::Cargo, "cargo", || generic::run_cargo_update(run_type))?;
runner.execute(Step::Flutter, "Flutter", || generic::run_flutter_upgrade(run_type))?;
Expand Down
2 changes: 1 addition & 1 deletion src/steps/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ pub fn run_dotnet_upgrade(ctx: &ExecutionContext) -> Result<()> {
return Err(SkipStep(String::from("No dotnet global tools installed")).into());
}

print_separator("Dotnet");
print_separator(".NET");

for package in packages {
let package_name = package.split_whitespace().next().unwrap();
Expand Down

0 comments on commit 47481ae

Please sign in to comment.