Skip to content
Snippets Groups Projects
Verified Commit be39d7ff authored by Evangelos Foutras's avatar Evangelos Foutras :smiley_cat:
Browse files

postgres: upgrade_pg: bump major version to 14

parent ea9fe768
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ set -e
TO_VERSION=$(pacman -Q postgresql | grep -Po '(?<=postgresql )[0-9]+\.[0-9]')
to_major=${TO_VERSION%%.*}
if (( $to_major != 13 )); then
if (( $to_major != 14 )); then
# NOTE: When this happens you should check the changelog and add any
# necessary changes here. Then bump the version check.
echo "ERROR: major upgrade detected, aborting..."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment