1
0
Fork 0
mirror of https://github.com/Luzifer/archrepo.git synced 2024-11-10 02:20:02 +00:00

Fix missing -name

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2020-01-10 18:46:16 +01:00
parent 3dfe38a9e5
commit 10138fdc47
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ join_by() {
declare -A local_versions
declare -A aur_versions
database=$(find . -maxdepth 1 -mindepth 1 -name '*.db.tar.xz' -or '*.db.tar.zstd')
database=$(find . -maxdepth 1 -mindepth 1 -name '*.db.tar.xz' -or -name '*.db.tar.zstd')
aur_query=("https://aur.archlinux.org/rpc/?v=5&type=info")

View file

@ -2,7 +2,7 @@
set -euo pipefail
cat -s <<EOF >scripts/repoctl.toml
repo = "$(find $(pwd) -mindepth 1 -maxdepth 1 -name '*.db.tar.xz' -or '*.db.tar.xstd')"
repo = "$(find $(pwd) -mindepth 1 -maxdepth 1 -name '*.db.tar.xz' -or -name '*.db.tar.xstd')"
backup = false
interactive = false
columnate = false