summaryrefslogtreecommitdiff
path: root/src/abslibre-tools/librerelease
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-07-31 14:41:36 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-07-31 14:41:36 -0400
commit12a6aad73c4d48a89e020899b643ea495143e298 (patch)
treedcce42b77a3f6ede208b30fd476ede7938124ed7 /src/abslibre-tools/librerelease
parent64a2d1c9fb7900c2002ce3871444d06d93854538 (diff)
Begone with XBS
Diffstat (limited to 'src/abslibre-tools/librerelease')
-rwxr-xr-xsrc/abslibre-tools/librerelease6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/abslibre-tools/librerelease b/src/abslibre-tools/librerelease
index d7dbbe4..705efc5 100755
--- a/src/abslibre-tools/librerelease
+++ b/src/abslibre-tools/librerelease
@@ -84,9 +84,7 @@ create_signature() {
sign_packages() {
IFS=$'\n'
- local files=($(find "${WORKDIR}/staging/" \
- \( -type d -name "${ABSLIBREDEST##*/}" \) -prune \
- -o \( -type f -not -iname '*.sig' \) -print))
+ local files=($(find "${WORKDIR}/staging/" -type f -not -iname '*.sig' -print))
local file
for file in "${files[@]}"; do
if [[ -f "${file}.sig" ]]; then
@@ -167,7 +165,7 @@ main() {
declare -i ret=0
load_conf makepkg.conf GPGKEY || ret=$?
- load_conf libretools.conf WORKDIR REPODEST ABSLIBREDEST || ret=$? # and HOOK{PRE,POST}RELEASE, which are optional
+ load_conf libretools.conf WORKDIR REPODEST || ret=$? # and HOOK{PRE,POST}RELEASE, which are optional
[[ $ret = 0 ]] || exit $ret
local re_url='^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?$'