We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f38130b commit 19851a8Copy full SHA for 19851a8
ci/style.sh
100644
100755
@@ -1,9 +1,8 @@
1
-#!/usr/bin/env sh
+#!/bin/sh
2
3
set -ex
4
5
-rustc ci/style.rs && ./style src
6
-
+rustc ci/style.rs && ./style v
7
rustup toolchain install nightly -c rustfmt --allow-downgrade
8
rustup override set nightly
9
command -v rustfmt
@@ -18,3 +17,13 @@ else
18
17
exit 1
19
fi
20
+for file in libc-test/semver/*.txt; do
21
+ case "$file" in
22
+ *TODO*) continue ;;
23
+ esac
24
+
25
+ if ! sort -C "$file"; then
26
+ echo "Unsorted semver file $file"
27
+ exit 1
28
+ fi
29
+done
0 commit comments