mirror of
https://github.com/Luzifer/archrepo.git
synced 2024-11-10 02:20:02 +00:00
11 lines
246 B
Bash
Executable file
11 lines
246 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
cat -s <<EOF >scripts/repoctl.toml
|
|
repo = "$(find $(pwd) -mindepth 1 -maxdepth 1 -name '*.db.tar.xz' -or -name '*.db.tar.xstd')"
|
|
backup = false
|
|
interactive = false
|
|
columnate = false
|
|
color = "auto"
|
|
quiet = false
|
|
EOF
|