From 26865beb70957d3b34f916d4d2a885d9e6fd093b Mon Sep 17 00:00:00 2001 From: maxice8 Date: Tue, 16 Apr 2019 05:59:01 -0300 Subject: [PATCH] travis-ci: also show files for nonfree packages. --- common/travis/show_files.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/travis/show_files.sh b/common/travis/show_files.sh index f9cfca8c463..16d158f4c5b 100755 --- a/common/travis/show_files.sh +++ b/common/travis/show_files.sh @@ -7,6 +7,8 @@ export XBPS_TARGET_ARCH="$2" XBPS_DISTDIR=/hostrepo while read -r pkg; do for subpkg in $(xsubpkg $pkg); do /bin/echo -e "\x1b[32mFiles of $subpkg:\x1b[0m" - xbps-query --repository=$HOME/hostdir/binpkgs -f "$subpkg" + xbps-query --repository=$HOME/hostdir/binpkgs \ + --repository=$HOME/hostdir/binpkgs/nonfree \ + -f "$subpkg" done done < /tmp/templates