mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-09-13 18:06:19 +02:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
61cc1f3504 | ||
![]() |
7037948b65 |
2
Makefile
2
Makefile
@@ -1,4 +1,4 @@
|
|||||||
V=0.9.20
|
V=0.9.21
|
||||||
|
|
||||||
BINPROGS = \
|
BINPROGS = \
|
||||||
checkpkg \
|
checkpkg \
|
||||||
|
@@ -130,9 +130,16 @@ for _arch in ${arch[@]}; do
|
|||||||
fi
|
fi
|
||||||
uploads+=("$pkgfile")
|
uploads+=("$pkgfile")
|
||||||
|
|
||||||
|
if [[ $SIGNPKG == 'y' ]]; then
|
||||||
|
echo "Signing package ${pkgfile}..."
|
||||||
|
gpg --detach-sign --use-agent -u "${PACKAGER}" "${pkgfile}" || abort
|
||||||
|
fi
|
||||||
|
|
||||||
sigfile="${pkgfile}.sig"
|
sigfile="${pkgfile}.sig"
|
||||||
if [ -f "${sigfile}" ]; then
|
if [ -f "${sigfile}" ]; then
|
||||||
uploads+=("$sigfile")
|
uploads+=("$sigfile")
|
||||||
|
elif [[ $SIGNPKG == 'y' ]]; then
|
||||||
|
abort "Signature ${pkgfile}.sig was not found"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
archrelease $repo-${_arch} || abort
|
archrelease $repo-${_arch} || abort
|
||||||
|
Reference in New Issue
Block a user