forked from jasder/antlr
Fix build script -- there is no readlink -f on macOS.
This commit is contained in:
parent
1c6f6c4aed
commit
a641c69fc6
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
thisdir=$(dirname $(readlink -f "$0"))
|
thisdir=$(dirname "$0")
|
||||||
|
|
||||||
"$thisdir/before_install-common.sh"
|
"$thisdir/before_install-common.sh"
|
||||||
|
|
Loading…
Reference in New Issue