Fix vscode enum key (fix #645)

This commit is contained in:
Roey Darwish Dror
2021-02-19 06:41:29 +02:00
parent 4fe3c257b6
commit c9aecda2ca
2 changed files with 2 additions and 2 deletions

View File

@@ -114,7 +114,7 @@ pub enum Step {
Vagrant, Vagrant,
Vcpkg, Vcpkg,
Vim, Vim,
VSCode, Vscode,
MicrosoftStore, MicrosoftStore,
Wsl, Wsl,
Yadm, Yadm,

View File

@@ -278,7 +278,7 @@ fn run() -> Result<()> {
target_os = "dragonfly" target_os = "dragonfly"
)))] )))]
runner.execute(Step::Atom, "apm", || generic::run_apm(run_type))?; runner.execute(Step::Atom, "apm", || generic::run_apm(run_type))?;
runner.execute(Step::VSCode, "vscode", || generic::run_vscode(run_type))?; runner.execute(Step::Vscode, "vscode", || generic::run_vscode(run_type))?;
runner.execute(Step::Fossil, "fossil", || generic::run_fossil(run_type))?; runner.execute(Step::Fossil, "fossil", || generic::run_fossil(run_type))?;
runner.execute(Step::Rustup, "rustup", || generic::run_rustup(&base_dirs, run_type))?; runner.execute(Step::Rustup, "rustup", || generic::run_rustup(&base_dirs, run_type))?;
runner.execute(Step::Dotnet, ".NET", || generic::run_dotnet_upgrade(&ctx))?; runner.execute(Step::Dotnet, ".NET", || generic::run_dotnet_upgrade(&ctx))?;