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