mirror of
https://github.com/swc-project/swc.git
synced 2024-12-11 07:35:15 +03:00
10 lines
223 B
Bash
10 lines
223 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -eu
|
||
|
|
||
|
cargo metadata --format-version 1 > /dev/null
|
||
|
|
||
|
cargo crev verify --show-latest-trusted --skip-verified |\
|
||
|
grep -v "^local" |\
|
||
|
grep -v "↑" |\
|
||
|
grep -v "=[ ]*$" |\
|
||
|
tee /dev/stderr
|