aboutsummaryrefslogtreecommitdiff
path: root/libc/ci/style.sh
diff options
context:
space:
mode:
Diffstat (limited to 'libc/ci/style.sh')
-rw-r--r--libc/ci/style.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/libc/ci/style.sh b/libc/ci/style.sh
deleted file mode 100644
index a6a0017..0000000
--- a/libc/ci/style.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env sh
-
-set -ex
-
-rustc ci/style.rs && ./style src
-
-if rustup component add rustfmt-preview ; then
- which rustfmt
- rustfmt -V
- cargo fmt --all -- --check
-fi
-
-if shellcheck --version ; then
- shellcheck -e SC2103 ci/*.sh
-else
- echo "shellcheck not found"
- exit 1
-fi
-