1
0
Fork 0
mirror of https://github.com/xHyroM/void-packages.git synced 2024-09-19 12:03:18 +02:00
void-packages/common/scripts/check-custom-licenses
2024-03-29 08:12:19 +01:00

9 lines
287 B
Bash
Executable file

#!/bin/bash
# checks for licenses that are no longer custom in packages
mapfile -t licenses < common/travis/license.lst
for lic in "${licenses[@]}"; do
grep -rl "custom:$lic"'[,"]' --include=template srcpkgs \
| cut -d/ -f2 | xargs -rn1 printf "%s: $lic is no longer custom\n"
done