From 0634a90f58f529e7c828666bf032507c6afaba1f Mon Sep 17 00:00:00 2001 From: John Date: Wed, 27 Apr 2022 11:55:09 -0500 Subject: [PATCH] Fix fresh install (Path was out of date) --- setup-development/windows/install-windows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-development/windows/install-windows.ps1 b/setup-development/windows/install-windows.ps1 index 36bb44f..9d391f0 100644 --- a/setup-development/windows/install-windows.ps1 +++ b/setup-development/windows/install-windows.ps1 @@ -64,7 +64,6 @@ if ($h -or $Help) { exit } - # .description # Command-Available: Checks whether a given command is available. # If command is available, returns $false @@ -165,6 +164,7 @@ cd $SetupPath $args = if ($AllowAdministrator) {" -AllowAdministrator"} else {""} $args += if ($DryRun) {" -DryRun"} else {""} PowerShell ("./upgrade-windows.ps1 -Install -NoPrompt" + $args) +Reload-Path # Open VSCode in the repository location Write-Host "`nOpening Visual Studio Code"