mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-30 00:37:52 +03:00
9 lines
212 B
Bash
Executable File
9 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
# Install packages
|
|
pacman -Syy --noconfirm
|
|
pacman -Sy --noconfirm bash python3 python-pip icu base-devel libxml2 glibc openbsd-netcat
|
|
python3 -m pip install --upgrade pip --quiet
|
|
|