Move install files to new directory

Open VSCode in the new repo after installation
This commit is contained in:
John 2022-04-26 02:41:15 -07:00
parent 40778b52fc
commit 2948765ba8
3 changed files with 8 additions and 5 deletions

View File

@ -56,7 +56,8 @@ param (
[switch]$DryRun # Run script without installing
)
$SetupPath = 'Mind_Reader/setup-development'
$RepoPath = "$GitDir\Mind_Reader"
$SetupPath = "$RepoPath\setup-development\windows"
if ($h -or $Help) {
Get-Help ./install-windows.ps1
@ -166,9 +167,11 @@ $args += if ($DryRun) {" -DryRun"} else {""}
PowerShell ("./upgrade-windows.ps1 -Install -NoPrompt" + $args)
# Open VSCode in the repository location
code .
Write-Host "`nOpening Visual Studio Code"
cd $RepoPath
Dry-Run "code ."
cd $dir
if ( -not $NoPrompt ) {
Write-Host "Press any key to exit."; [void][Console]::ReadKey(1)
Write-Host "`nPress any key to exit."; [void][Console]::ReadKey(1)
}

View File

@ -157,7 +157,7 @@ $prev_directory = $pwd
# install NodeJS dependencies for this extension
Write-Host "`nInstalling NodeJS Dependencies..."
cd ..
cd ..\..
Dry-Run 'npm install'
# if we're on a known VSCode version, go ahead and run electron-rebuild
@ -189,5 +189,5 @@ switch -Regex (code --version) {
# Return from whence we came
cd $prev_directory
if ( -not $NoPrompt ) {
Write-Host "Press any key to exit."; [void][Console]::ReadKey(1)
Write-Host "`nPress any key to exit."; [void][Console]::ReadKey(1)
}