Remove db files
This commit is contained in:
parent
e999ddf977
commit
ac2c7758a7
|
@ -1 +1 @@
|
||||||
calrepo.db.tar.gz
|
../db/calrepo.db.tar.gz
|
|
@ -1 +1 @@
|
||||||
calrepo.db.tar.gz.sig
|
../db/calrepo.db.tar.gz.sig
|
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
||||||
calrepo.files.tar.gz
|
../db/calrepo.files.tar.gz
|
|
@ -1 +1 @@
|
||||||
calrepo.files.tar.gz.sig
|
../db/calrepo.files.tar.gz.sig
|
Binary file not shown.
Binary file not shown.
11
build.sh
11
build.sh
|
@ -2,6 +2,16 @@
|
||||||
|
|
||||||
# TODO: Get the .pkg.tar.zst from calpkgs
|
# TODO: Get the .pkg.tar.zst from calpkgs
|
||||||
|
|
||||||
|
getAnyPackages() {
|
||||||
|
cd x86_64
|
||||||
|
|
||||||
|
while read -r pkg; do
|
||||||
|
ln -sf "$pkg" "$(basename $pkg)"
|
||||||
|
done < "$1"
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
}
|
||||||
|
|
||||||
buildDatabase() {
|
buildDatabase() {
|
||||||
lastFolder=$(pwd -P)
|
lastFolder=$(pwd -P)
|
||||||
cd db || { echo "Couldn't cd into 'db'." 1>&2 && exit 1; }
|
cd db || { echo "Couldn't cd into 'db'." 1>&2 && exit 1; }
|
||||||
|
@ -15,6 +25,7 @@ buildDatabase() {
|
||||||
}
|
}
|
||||||
|
|
||||||
runScript() {
|
runScript() {
|
||||||
|
getAnyPackages <(find -H "$PWD/any" -mindepth 1 -type f -regex '.*.pkg.tar.zst.*')
|
||||||
buildDatabase <(find -H "$PWD" -mindepth 1 -type f -regex '.*.pkg.tar.zst')
|
buildDatabase <(find -H "$PWD" -mindepth 1 -type f -regex '.*.pkg.tar.zst')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
calrepo.db.tar.gz
|
../db/calrepo.db.tar.gz
|
|
@ -1 +1 @@
|
||||||
calrepo.db.tar.gz.sig
|
../db/calrepo.db.tar.gz.sig
|
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
||||||
calrepo.files.tar.gz
|
../db/calrepo.files.tar.gz
|
|
@ -1 +1 @@
|
||||||
calrepo.files.tar.gz.sig
|
../db/calrepo.files.tar.gz.sig
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue