Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: skip barman version 3.12.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tao Li <[email protected]>
litaocdl committed Nov 25, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
litaocdl Tao Li
1 parent 9ccd4ee commit d6a4933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UBI/update.sh
Original file line number Diff line number Diff line change
@@ -127,7 +127,7 @@ compare_architecture_pkgs() {
# Get the latest Barman version
latest_barman_version=
_raw_get_latest_barman_version() {
curl -s https://pypi.org/pypi/barman/json | jq -r '.releases | keys[]' | sort -Vr | head -n1
curl -s https://pypi.org/pypi/barman/json | jq -r '.releases | keys[]' | sort -Vr | grep -v '3.12.0' | head -n1
}
get_latest_barman_version() {
if [ -z "$latest_barman_version" ]; then

0 comments on commit d6a4933

Please sign in to comment.