summaryrefslogtreecommitdiff
path: root/scripts/clang-tidy-diff.sh
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2020-04-21 13:49:45 -0400
committerGitHub <noreply@github.com>2020-04-21 10:49:45 -0700
commit8e017e9fe58687251275d6fe8a1a0b23813c3b1e (patch)
tree17f1a070c368096242c98dd4aba5619b1470ded7 /scripts/clang-tidy-diff.sh
parent483d759230f4693abfca3a74a97b1c1db6d2a0d6 (diff)
downloadbinaryen-8e017e9fe58687251275d6fe8a1a0b23813c3b1e.tar.gz
binaryen-8e017e9fe58687251275d6fe8a1a0b23813c3b1e.tar.bz2
binaryen-8e017e9fe58687251275d6fe8a1a0b23813c3b1e.zip
Convert CI from travis + appveyor to github actions (#2646)
The intention is to move away from travis and appveyor which have become very slow. See: #2356
Diffstat (limited to 'scripts/clang-tidy-diff.sh')
-rwxr-xr-xscripts/clang-tidy-diff.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/clang-tidy-diff.sh b/scripts/clang-tidy-diff.sh
index c3f3cc4a2..c8d6b11a5 100755
--- a/scripts/clang-tidy-diff.sh
+++ b/scripts/clang-tidy-diff.sh
@@ -21,7 +21,7 @@ if [ ! -e "$CLANG_TIDY" ]; then
exit 1
fi
-CLANG_DIR=$(dirname $(dirname $CLANG_TIDY))
+CLANG_DIR=$(dirname $(dirname $(readlink -f $CLANG_TIDY)))
CLANG_TIDY_DIFF=$CLANG_DIR/share/clang/clang-tidy-diff.py
if [ ! -e "$CLANG_TIDY_DIFF" ]; then
echo "Failed to find clang-tidy-diff.py ($CLANG_TIDY_DIFF)"