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:
parent
3dfe38a9e5
commit
10138fdc47
2 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue