Ignore signatures in script for uploading Windows binaries to GitHub

This commit is contained in:
Martchus 2021-04-07 09:59:30 +02:00
parent f525679f1d
commit 3708f202e7
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
#!/bin/bash
set -e # abort on first error
shopt -s nullglob
shopt -s extglob
source "$(dirname $0)/../versions.sh"
if ! [[ $DRY_RUN ]] && ! [[ $GITHUB_TOKEN ]]; then
@ -43,7 +44,7 @@ do
# determine file path of arch linux package
pkg_name=mingw-w64-$project$variant_suffix
pkg_files=("$repo_dir/$pkg_name-$version"-*-*.pkg.tar.*)
pkg_files=("$repo_dir/$pkg_name-$version"-*-*.pkg.tar.!(*.sig))
if [[ ${#pkg_files[@]} == 0 ]]; then
echo "no mingw-w64$variant_suffix package for $project/v$version present"
continue