ketarin_setup.ps1 331 B

1234567891011
  1. # If you change this value, also change it in the global settings
  2. # The name will also be saveDir
  3. $saveDir = "c:\chocolatey-auto-save"
  4. Write-Host "Ensuring that the Ketarin auto save folder is set appropriately."
  5. if (!(Test-Path($saveDir))) {
  6. mkdir $saveDir
  7. }
  8. choco upgrade chocolateypackageupdater -y
  9. choco upgrade ketarin -y