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