Fix build script -- there is no readlink -f on macOS.

This commit is contained in:
Ewan Mellor 2016-11-06 16:57:54 -08:00 committed by parrt
parent 1c6f6c4aed
commit a641c69fc6
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
set -euo pipefail
thisdir=$(dirname $(readlink -f "$0"))
thisdir=$(dirname "$0")
"$thisdir/before_install-common.sh"