Commit 82222716 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play common.sh: get_github_url(): drop checking for regexp

parent 9d6cebb8
......@@ -205,7 +205,8 @@ get_github_url()
local url="$1"
local asset_name="$2"
echo "$asset_name" | grep -q "\.[*?]" && fatal "Only glob symbols * and ? are supported. Don't use regexp! Input string: $asset_name"
# See tdesktop.*.tar.gz
#echo "$asset_name" | grep -q "\.[*?]" && fatal "Only glob symbols * and ? are supported. Don't use regexp! Input string: $asset_name"
wc="$(__convert_glob__to_regexp "$asset_name")"
if [ "$3" == "prerelease" ] ; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment