mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
9 lines
231 B
Bash
Executable File
9 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
sudo apt update
|
|
# Install libcurl dev so that hurl can be built dynamically with libcurl
|
|
sudo apt install bash libcurl4-openssl-dev libxml2-utils netcat
|
|
python3 -m pip install --upgrade pip --quiet
|
|
|