diff options
author | Érico Rolim <erico.erc@gmail.com> | 2020-12-14 20:35:53 +0000 |
---|---|---|
committer | Érico Nogueira Rolim <34201958+ericonr@users.noreply.github.com> | 2020-12-14 21:54:09 +0000 |
commit | 2c70789fe2bda80d72f47d54d71ae96d35c84131 (patch) | |
tree | 44bb28be59fdae649b64f4e7eb012af93c1d49d1 /common/travis | |
parent | 3c0ceb31b54dd417cb38a137c905985b66c02f8e (diff) | |
download | void-packages-2c70789fe2bda80d72f47d54d71ae96d35c84131.tar void-packages-2c70789fe2bda80d72f47d54d71ae96d35c84131.tar.gz void-packages-2c70789fe2bda80d72f47d54d71ae96d35c84131.tar.bz2 void-packages-2c70789fe2bda80d72f47d54d71ae96d35c84131.tar.lz void-packages-2c70789fe2bda80d72f47d54d71ae96d35c84131.tar.xz void-packages-2c70789fe2bda80d72f47d54d71ae96d35c84131.tar.zst void-packages-2c70789fe2bda80d72f47d54d71ae96d35c84131.zip |
common/travis/show_files: don't error out when subpkg doesn't exist.
Diffstat (limited to 'common/travis')
-rwxr-xr-x | common/travis/show_files.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/travis/show_files.sh b/common/travis/show_files.sh index f0715e4446d..8799ed52e1e 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 |