Make call will now default to +44 if the number starts with a 0

This commit is contained in:
Jonathan Hodgson 2021-04-20 14:52:27 +01:00
parent b1fd37754b
commit 0d13928595

View file

@ -27,7 +27,9 @@ while [[ $1 = -?* ]]; do
shift
done
number="$1"
number="$(echo "$1" | sed 's/^0/+44/')"
[ -z "$number" ] && die "No Number Specified"