setup/install.sh: remove dirname usage

This commit is contained in:
maxice8 2019-04-13 17:44:01 -03:00 committed by maxice8
parent 1219c3a3dd
commit c5b6940949
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ _vmove() {
return 1
fi
for f in ${files}; do
_targetdir=$(dirname $f)
_targetdir=${f%/*}/
break
done