10 lines
287 B
Bash
Executable File
10 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
|