void-packages/common/travis/show_files.sh
2015-04-10 10:59:28 +02:00

12 lines
195 B
Bash
Executable file

#! /bin/sh
#
# show_files.sh
for pkg in $(cat /tmp/templates); do
for subpkg in $(xsubpkg $pkg); do
/bin/echo -e "\x1b[32mFiles of $subpkg:\x1b[0m"
./xbps-src show-files "$pkg"
done
done