There was an error while loading. Please reload this page.
1 parent c8a8d4a commit 2ae270cCopy full SHA for 2ae270c
scripts/test_syntax.sh
@@ -6,7 +6,9 @@
6
# Therefore we need to use find + temp files for the file lists.
7
8
scriptDir=`dirname $0`
9
-DUNE_BIN_DIR=`realpath $scriptDir/../_build/install/default/bin`
+# macOS 12 does not have the realpath utility,
10
+# so let's use this workaround instead.
11
+DUNE_BIN_DIR=`cd "$scriptDir/../_build/install/default/bin"; pwd -P`
12
13
$DUNE_BIN_DIR/syntax_tests
14
0 commit comments