mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
25 lines
429 B
Bash
Executable File
25 lines
429 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Script used to verify the dependencies of the project.
|
|
#
|
|
|
|
set -eu
|
|
|
|
# Exclude local crates.
|
|
TEXT="$(./scripts/crev/run.sh)"
|
|
|
|
if [ ! -z "${1-}" ] ; then
|
|
echo "Opening the crate $1"
|
|
|
|
cargo crev open $@
|
|
cargo crev review $@
|
|
|
|
else
|
|
if [ ! -z "$TEXT" ]; then
|
|
echo "Found a dependency requires verification"
|
|
# exit 1
|
|
else
|
|
echo "All dependencies are verified"
|
|
fi
|
|
fi
|