Commit 66b3d8d3 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm: do not add to pkg_files if filename has not dot (it is not package file)

parent 317be851
......@@ -266,7 +266,7 @@ for opt in "$@" ; do
check_command $opt && continue
check_option $opt && continue
if [ -f "$opt" ] ; then
if [ -f "$opt" ] && echo $opt | grep -q "\." ; then
pkg_files="$pkg_files $opt"
else
pkg_names="$pkg_names $opt"
......
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