From 2c70789fe2bda80d72f47d54d71ae96d35c84131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Rolim?= Date: Mon, 14 Dec 2020 17:35:53 -0300 Subject: [PATCH] common/travis/show_files: don't error out when subpkg doesn't exist. --- common/travis/show_files.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/travis/show_files.sh b/common/travis/show_files.sh index f0715e4446..8799ed52e1 100755 --- a/common/travis/show_files.sh +++ b/common/travis/show_files.sh @@ -9,6 +9,7 @@ while read -r pkg; do /bin/echo -e "\x1b[32mFiles of $subpkg:\x1b[0m" xbps-query --repository=$HOME/hostdir/binpkgs \ --repository=$HOME/hostdir/binpkgs/nonfree \ - -i -f "$subpkg" + -i -f "$subpkg" || + /bin/echo -e "\x1b[33m $subpkg wasn't found\x1b[0m" done done < /tmp/templates