mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-06 05:17:49 +00:00
b55774d3a6
Handles starship.install (MSI installer) and starship.portable and makes starship an empty meta-package that only depends on starship.install. MSI/installer packages seem to be preferred over zip-based installers on chocolatey. Proper virtual packages that allow choosing either a portable or install variant aren't implemented in chocolatey yet.
26 lines
836 B
PowerShell
26 lines
836 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
|
|
$packageName = $env:ChocolateyPackageName
|
|
|
|
$url_x86_64_msi = ''
|
|
$url_i686_msi = ''
|
|
$checksum_x86_64_msi = ''
|
|
$checksum_i686_msi = ''
|
|
|
|
$packageArgs = @{
|
|
packageName = $packageName
|
|
fileType = 'msi'
|
|
url = $url_i686_msi
|
|
url64bit = $url_x86_64_msi
|
|
checksum = $checksum_i686_msi
|
|
checksum64 = $checksum_x86_64_msi
|
|
checksumType = 'sha256'
|
|
softwareName = 'starship*'
|
|
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
|
|
validExitCodes = @(0, 3010, 1641)
|
|
}
|
|
Install-ChocolateyPackage @packageArgs
|
|
|
|
# Add to Profile
|
|
Write-Host "Add the following to the end of ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 'Invoke-Expression (&starship init powershell)'"
|