From 227fbd790210f51d20a247b51409232c7778ee59 Mon Sep 17 00:00:00 2001 From: Olaf Meeuwissen Date: Mon, 15 Feb 2021 19:53:07 +0900 Subject: [PATCH] Fix backends source archive file name pattern This changes as a result of addressing sane-project/backends#248. --- snapshots/create-index.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snapshots/create-index.sh b/snapshots/create-index.sh index 40ae4547..3d80a786 100755 --- a/snapshots/create-index.sh +++ b/snapshots/create-index.sh @@ -2,7 +2,7 @@ cd $(dirname $0) -BE_SRC_ARCHIVE=$(ls sane-backends-*-g*.tar.gz) +BE_SRC_ARCHIVE=$(ls sane-backends-*-*.tar.gz) FE_SRC_ARCHIVE=$(ls sane-frontends-*-g*.tar.gz) BE_GIT_ARCHIVE=$(ls sane-backends-git*.tar.gz) FE_GIT_ARCHIVE=$(ls sane-frontends-git*.tar.gz)