mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-22 10:31:46 +03:00
12 lines
196 B
Bash
Executable File
12 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
set +eo pipefail
|
|
curl --version | grep Features | grep --quiet HTTP2
|
|
if [ $? -eq 1 ]; then
|
|
exit 0
|
|
fi
|
|
set -Eeuo pipefail
|
|
|
|
hurl tests_ok/http_version_2_option.hurl
|