Commit 0bb6fd69 authored by Vitaly Lipatov's avatar Vitaly Lipatov

eget: check for wildcard only if separated mask is missed

parent 3acb8acf
...@@ -353,7 +353,7 @@ else ...@@ -353,7 +353,7 @@ else
URL="$(dirname "$1")" URL="$(dirname "$1")"
fi fi
if echo "$URL" | grep -q "[*?]" ; then if [ -z "$MASK" ] && echo "$URL" | grep -q "[*?]" ; then
fatal "Error: there are globbing symbols (*?) in $URL" fatal "Error: there are globbing symbols (*?) in $URL"
fi fi
......
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