mirror of
https://github.com/luzifer-docker/arch-repo-builder.git
synced 2024-12-20 17:41:19 +00:00
Use explicit search for known extensions
Just wildcards messes up with signatures Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
229e6dc375
commit
6fad0c2b4b
1 changed files with 2 additions and 2 deletions
4
run.sh
4
run.sh
|
@ -66,9 +66,9 @@ gosu builder getkeys.sh
|
||||||
# Execute the build itself
|
# Execute the build itself
|
||||||
gosu builder makepkg ${MAKEPKG_OPTS[@]}
|
gosu builder makepkg ${MAKEPKG_OPTS[@]}
|
||||||
|
|
||||||
PACKAGE=($(ls *.pkg.tar.*))
|
PACKAGE=($(find . -regextype egrep -regex '^.*\.pkg(|\.tar|\.tar\.xz|\.tar\.zst)$'))
|
||||||
|
|
||||||
REPODB=$(find /repo -name '*.db.tar.*')
|
REPODB=$(find /repo -regextype egrep -regex '^.*\.db(|\.tar|\.tar\.xz|\.tar.zst)$')
|
||||||
if [ -z "${REPODB}" ]; then
|
if [ -z "${REPODB}" ]; then
|
||||||
echo "No database found in /repo, not adding package."
|
echo "No database found in /repo, not adding package."
|
||||||
echo "The built package is available in ${PACKAGE}"
|
echo "The built package is available in ${PACKAGE}"
|
||||||
|
|
Loading…
Reference in a new issue