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