summaryrefslogtreecommitdiffstats
path: root/debian/lintian-to-copyright.sh
blob: 9a766da355ec80e6a9cfb38e5730e1fcee676ead (plain)
1
2
3
4
5
#!/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