diff options
Diffstat (limited to 'install.ps1')
| -rw-r--r-- | install.ps1 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/install.ps1 b/install.ps1 index 6de50d5..9dff1c5 100644 --- a/install.ps1 +++ b/install.ps1 @@ -18,3 +18,13 @@ Start-Sleep -Milliseconds 200 Remove-Item -Path $tempDir -Recurse -Force Write-Host "Done!" + +Write-Host "" +$response = Read-Host "Remove all example scripts? [Y/n]" +if ($response -notmatch '^[nN]') { + Write-Host "Removing example scripts..." + Remove-Item -Path ".run/src/bin/*" -Force + Write-Host "Done!" +} else { + Write-Host "Skipped." +} |
