mirror of
https://github.com/reacherhq/check-if-email-exists.git
synced 2026-09-10 16:01:10 +00:00
* 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
7 lines
110 B
Bash
7 lines
110 B
Bash
required_arg() {
|
|
if [ -z "$1" ]; then
|
|
echo "Required argument $2 missing"
|
|
exit 1
|
|
fi
|
|
}
|