mirror of
https://github.com/jj-vcs/jj.git
synced 2026-07-08 02:00:44 +08:00
Follow-up to b1bb5e1
This creates a `.github/scripts/count-cargo-lock-packages` script to
count packages with our methodology that one can run outside CI.
I also renamed the check so that it's clearer what it does.
6 lines
205 B
Bash
Executable File
6 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
# This is extremely approximate because the Cargo.lock file contains
|
|
# dependencies for all features and platforms, but it helps us keep an eye on
|
|
# things.
|
|
grep -c '^\[\[package\]\]' Cargo.lock
|