From ee6e36e24da8a5d2f937c671402f32cdaf92376c Mon Sep 17 00:00:00 2001 From: KunoiSayami Date: Fri, 22 Oct 2021 02:19:07 +0800 Subject: refactor: Move packages outside repo folder Signed-off-by: KunoiSayami --- README.md | 2 +- build_all.sh | 6 +++--- packages/.gitignore | 5 +++++ repo/.gitignore | 4 ---- repo/packages/.gitignore | 1 - 5 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 packages/.gitignore delete mode 100644 repo/.gitignore delete mode 100644 repo/packages/.gitignore diff --git a/README.md b/README.md index 62ba28d..bdcfbd8 100644 --- a/README.md +++ b/README.md @@ -17,4 +17,4 @@ to your /etc/pacman.conf . curl -fL https://keys.openpgp.org/vks/v1/by-fingerprint/43C24AB2392DFB61D7A5E4838B97E42C37978965 | sudo pacman-key --add - sudo pacman-key --finger 43C24AB2392DFB61D7A5E4838B97E42C37978965 sudo pacman-key --lsign-key 43C24AB2392DFB61D7A5E4838B97E42C37978965 -``` \ No newline at end of file +``` diff --git a/build_all.sh b/build_all.sh index dee8dbc..432b10f 100755 --- a/build_all.sh +++ b/build_all.sh @@ -1,8 +1,8 @@ #!/bin/bash -PKGDEST="${PWD}/repo/packages" +PKGDEST="${PWD}/packages" SRCDEST="${PWD}/build" -REPO_DEST="${PWD}/repo/kunoisayami.db.tar.xz" -REPO_PENDING="${PWD}/repo/PENDING" +REPO_DEST="${PWD}/packages/kunoisayami.db.tar.xz" +REPO_PENDING="${PWD}/packages/PENDING" touch "$REPO_PENDING" pushd kunoisayami for folder in */ ; do diff --git a/packages/.gitignore b/packages/.gitignore new file mode 100644 index 0000000..2f81c25 --- /dev/null +++ b/packages/.gitignore @@ -0,0 +1,5 @@ +*.pkg* +*.tar* +*.sig +*.db +*.files diff --git a/repo/.gitignore b/repo/.gitignore deleted file mode 100644 index b64b963..0000000 --- a/repo/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -*.tar* -*.sig -*.db -*.files diff --git a/repo/packages/.gitignore b/repo/packages/.gitignore deleted file mode 100644 index 52726cb..0000000 --- a/repo/packages/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.pkg* -- cgit v1.3.1