mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 23:59:07 +00:00
6 lines
207 B
Bash
Executable File
6 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
# Pipe the output of lintian into this.
|
|
sed -ne 's/.* file-without-copyright-information //p' | cut -d/ -f1-2 | sort -u | while read x; do
|
|
/usr/share/cargo/scripts/guess-crate-copyright "$x"
|
|
done
|