mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
34 lines
1.1 KiB
PowerShell
34 lines
1.1 KiB
PowerShell
Param
|
|
(
|
|
[parameter(Mandatory = $true)]
|
|
[string]
|
|
$Version
|
|
)
|
|
|
|
New-Item -Path "." -Name "package/bin" -ItemType Directory
|
|
New-Item -Path "." -Name "dist" -ItemType "directory"
|
|
Copy-Item -Path "../../themes" -Destination "./package" -Recurse
|
|
|
|
# Download the files and pack them
|
|
@{name = 'posh-windows-amd64.exe'; outName = 'oh-my-posh.exe' } | ForEach-Object -Process {
|
|
$download = "https://github.com/jandedobbeleer/oh-my-posh/releases/download/v$Version/$($_.name)"
|
|
Invoke-WebRequest $download -Out "./package/bin/$($_.outName)"
|
|
}
|
|
|
|
$zipDestination = "./dist/posh-windows-amd64.7z"
|
|
|
|
$compress = @{
|
|
Path = "./package/*"
|
|
CompressionLevel = "Fastest"
|
|
DestinationPath = $zipDestination
|
|
}
|
|
Compress-Archive @compress
|
|
$zipHash = Get-FileHash $zipDestination -Algorithm SHA256
|
|
$content = Get-Content '.\oh-my-posh.json' -Raw
|
|
$content = $content.Replace('<VERSION>', $Version)
|
|
$content = $content.Replace('<HASH>', $zipHash.Hash)
|
|
$content | Out-File -Encoding 'UTF8' './dist/oh-my-posh.json'
|
|
$zipHash.Hash | Out-File -Encoding 'UTF8' './dist/posh-windows-amd64.7z.sha256'
|
|
|
|
Remove-Item ./package/ -Recurse
|