Skip to content
Snippets Groups Projects
Commit 9f5c2879 authored by Yuki Okushi's avatar Yuki Okushi
Browse files

Fix scripts following shellcheck

parent 2f605023
No related branches found
No related tags found
No related merge requests found
......@@ -72,5 +72,5 @@ for TARGET in $TARGETS; do
done
# FIXME: Use upstream once it gets rustup.
cargo +${NIGHTLY_DATE} semverfork --api-guidelines --target="${TARGET}"
cargo semverfork --api-guidelines --target="${TARGET}"
done
......@@ -11,7 +11,8 @@ if rustup component add rustfmt-preview ; then
fi
if shellcheck --version ; then
shellcheck -e SC2103 ci/*.sh
# GHA's shellcheck is too old (0.4.6) and cannot handle SC2153 correctly.
shellcheck -e SC2103 -e SC2153 ci/*.sh
else
echo "shellcheck not found"
exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment