9 lines
82 B
Bash
Executable file
9 lines
82 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
main() {
|
|
cargo tree --depth 1 | wc -l
|
|
}
|
|
|
|
main "$@"
|