Files
Amaury 4f665a32e0 ci: Remove appveyor and travis, use GA (#904)
* ci: Remove appveyor and travis, use GA

* Only stable

* On push master

* Use vendored openssl

* Remove need of openssl in README

* Remove windows ci

* Remove windows
2021-09-13 14:54:22 +02:00

7 lines
110 B
Bash

required_arg() {
if [ -z "$1" ]; then
echo "Required argument $2 missing"
exit 1
fi
}