setup.ps1 264 B

123456789
  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. }