Skip to content

Commit

Permalink
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]>
  • Loading branch information
litaocdl authored and NiccoloFei committed Nov 25, 2024
1 parent de0ba9b commit 3b84d22
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
Expand Up @@ -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
Expand Down

0 comments on commit 3b84d22

Please sign in to comment.