mirror of
https://github.com/Egor00f/kolibrios-gcc-toolchain.git
synced 2024-11-22 09:13:48 +01:00
14 lines
632 B
PowerShell
14 lines
632 B
PowerShell
#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
|
|
|
|
Install-ChocolateyPackage "$packageName" -validExitCodes $validExitCodes
|
|
|
|
$INSTALL_PATH = Read-Host 'Path to install toolchain(Enter - default)'
|
|
|
|
.\install.ps1 -InstallPath $INSTALL_PATH
|