mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 11:43:08 +03:00
14 lines
499 B
PowerShell
14 lines
499 B
PowerShell
powershell write-host -foregroundcolor Cyan "----- create windows64 zip package -----"
|
|
|
|
$actual_dir=(Get-Location).Path
|
|
|
|
# get built hurl version
|
|
$hurl_package_version = Get-Content .\target\win-package\version.txt
|
|
|
|
# create windows64 zip package
|
|
cd $PSScriptRoot\..\..\target\win-package
|
|
Get-ChildItem -Path *.dll, *hurl.exe, *hurlfmt.exe, *.txt, ../../*.md -Exclude hex_literal* | Compress-Archive -DestinationPath hurl-${hurl_package_version}-win64.zip
|
|
Get-ChildItem .\*win64.zip
|
|
|
|
cd $actual_dir
|