Fix check of realpath to not print path to console
This commit is contained in:
parent
18c59486c3
commit
b8bc13c3d0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue