Fix macOS compatibiliy
readlink -f option requires recent macOS 12.6
This commit is contained in:
parent
ae6bf4bc7d
commit
3b2eb7507b
@ -3,7 +3,7 @@
|
||||
if which realpath > /dev/null; then
|
||||
TOP=`realpath "$TOP"`
|
||||
elif which readlink > /dev/null; then
|
||||
TOP=`readlink -f "$TOP"`
|
||||
TOP=`(cd "$TOP"; pwd)`
|
||||
fi
|
||||
|
||||
#export G_DEBUG=fatal_criticals
|
||||
|
Loading…
Reference in New Issue
Block a user