aboutsummaryrefslogtreecommitdiff
path: root/.github/ci
diff options
context:
space:
mode:
Diffstat (limited to '.github/ci')
-rwxr-xr-x.github/ci/crlf.sh2
-rwxr-xr-x.github/ci/rustfmt.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/ci/crlf.sh b/.github/ci/crlf.sh
index ede17c861..69838ce88 100755
--- a/.github/ci/crlf.sh
+++ b/.github/ci/crlf.sh
@@ -4,7 +4,7 @@
4 4
5set -euo pipefail 5set -euo pipefail
6 6
7FILES_WITH_CRLF=$(find ! -path "./.git/*" -not -type d | xargs -0 file -N | (grep " CRLF " || true)) 7FILES_WITH_CRLF=$(find ! -path "./.git/*" -not -type d | xargs file -N | (grep " CRLF " || true))
8 8
9if [ -z "$FILES_WITH_CRLF" ]; then 9if [ -z "$FILES_WITH_CRLF" ]; then
10 echo -e "No files with CRLF endings found." 10 echo -e "No files with CRLF endings found."
diff --git a/.github/ci/rustfmt.sh b/.github/ci/rustfmt.sh
index 0080f0db8..369239cfe 100755
--- a/.github/ci/rustfmt.sh
+++ b/.github/ci/rustfmt.sh
@@ -9,4 +9,4 @@ export CARGO_HOME=/ci/cache/cargo
9export CARGO_TARGET_DIR=/ci/cache/target 9export CARGO_TARGET_DIR=/ci/cache/target
10mv rust-toolchain-nightly.toml rust-toolchain.toml 10mv rust-toolchain-nightly.toml rust-toolchain.toml
11 11
12find . -name '*.rs' -not -path '*target*' | xargs -0 rustfmt --check --skip-children --unstable-features --edition 2021 12find . -name '*.rs' -not -path '*target*' | xargs rustfmt --check --skip-children --unstable-features --edition 2021