kolibrios-gcc-toolchain/chocolatey/tools/chocolateyInstall.ps1

14 lines
632 B
PowerShell
Raw Normal View History

#NOTE: Please remove any commented lines to tidy up prior to releasing the package, including this one
$packageName = 'kos32-gcc' # arbitrary name for the package, used in messages
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx
# main helpers - these have error handling tucked into them already
# installer, will assert administrative rights
2024-11-16 12:21:10 +01:00
Install-ChocolateyPackage "$packageName" -validExitCodes $validExitCodes
2024-11-16 12:21:10 +01:00
$INSTALL_PATH = Read-Host 'Path to install toolchain(Enter - default)'
.\install.ps1 -InstallPath $INSTALL_PATH