mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-27 16:26:40 +03:00
8 lines
149 B
Bash
Executable File
8 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
# Install packages
|
|
pacman -Syy --noconfirm
|
|
pacman -Sy --noconfirm python3 python-pip
|
|
python3 -m pip install --upgrade pip --quiet
|