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