Fix check of realpath to not print path to console

This commit is contained in:
Jakub Jirutka 2017-10-13 15:22:39 +02:00
parent 18c59486c3
commit b8bc13c3d0

View file

@ -85,7 +85,7 @@ readonly VIRTUAL_PKG=".make-$PROGNAME"
# For compatibility with systems that does not have "realpath" command.
if ! command -v realpath 2>/dev/null; then
if ! command -v realpath >/dev/null; then
alias realpath='readlink -f'
fi