mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 08:02:12 +03:00
8 lines
242 B
PowerShell
8 lines
242 B
PowerShell
Set-StrictMode -Version latest
|
|
$ErrorActionPreference = 'Stop'
|
|
if (Test-Path build/output.bin) {
|
|
Remove-Item build/output.bin
|
|
}
|
|
hurl --output build/output.bin tests_ok/output.hurl
|
|
Write-Host (Get-Content build/output.bin -Raw) -NoNewLine
|