From 3708f202e77c21d5a910dc44fc110fa0b0fde6ea Mon Sep 17 00:00:00 2001 From: Martchus Date: Wed, 7 Apr 2021 09:59:30 +0200 Subject: [PATCH] Ignore signatures in script for uploading Windows binaries to GitHub --- devel/own-projects/upload-mingw-w64-to-github.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devel/own-projects/upload-mingw-w64-to-github.sh b/devel/own-projects/upload-mingw-w64-to-github.sh index 0a5667c8..90f1c69c 100755 --- a/devel/own-projects/upload-mingw-w64-to-github.sh +++ b/devel/own-projects/upload-mingw-w64-to-github.sh @@ -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