Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Allow upload script to check if current signature exists. #14705

Merged
merged 2 commits into from
Jul 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/upload_to_rpm_repo
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ echo "%_signature gpg

rm -rf $TMP_REPO
mkdir -pv $TMP_REPO/x86_64
if !rpm --checksig dist/*.rpm | grep pgp; then
if ! rpm --checksig dist/*.rpm | grep pgp; then
./tools/auto_rpm_sign
rpm --checksig dist/*.rpm | grep pgp
fi
Expand Down