We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2b3d3 commit d598b04Copy full SHA for d598b04
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