aboutsummaryrefslogtreecommitdiff
path: root/.github/scripts
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-09-29 14:07:21 +0200
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-10-23 14:13:42 +0200
commit3a86b60032bd659c2b12e984abb40cee93568558 (patch)
tree4070063b1f97ea8ab1b91dab66629ffe6030013b /.github/scripts
parentf6f2334ac28f41994ad6480b1a19e653c659662c (diff)
downloadrneovim-3a86b60032bd659c2b12e984abb40cee93568558.tar.gz
rneovim-3a86b60032bd659c2b12e984abb40cee93568558.tar.bz2
rneovim-3a86b60032bd659c2b12e984abb40cee93568558.zip
docs: misc
Co-authored-by: David Pedersen <limero@me.com> Co-authored-by: Gregory Anders <greg@gpanders.com> Co-authored-by: Leo Schlosser <Leo.Schlosser@Student.HTW-Berlin.de> Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to '.github/scripts')
-rwxr-xr-x.github/scripts/install_deps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh
index b7d723e690..df2bc98075 100755
--- a/.github/scripts/install_deps.sh
+++ b/.github/scripts/install_deps.sh
@@ -18,7 +18,7 @@ if [[ $os == Linux ]]; then
DEFAULT_CLANG_VERSION=$(echo | clang -dM -E - | grep __clang_major | awk '{print $3}')
CLANG_VERSION=20
if ((DEFAULT_CLANG_VERSION >= CLANG_VERSION)); then
- echo "Default clang version is $DEFAULT_CLANG_VERSION, which equal or larger than wanted version $CLANG_VERSION. Aborting!"
+ echo "Default clang version is $DEFAULT_CLANG_VERSION, which is equal or larger than wanted version $CLANG_VERSION. Aborting!"
exit 1
fi