File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ repo_name="fledge" # Name of the Git repository
26
26
branch=" main" # Default Git branch to use
27
27
pkg_name=" fledge" # Name of the package to build
28
28
architecture=" x86_64" # The architecture for which the rpm should be created
29
- rhpg_pkg=" rh-postgresql96 " # Name of the Red Hat package for postgres
29
+ rhpg_pkg=" rh-postgresql13 " # Name of the Red Hat package for postgres
30
30
rhgcc_pkg=" devtoolset-7" # Name of the Red Hat package for the newer g++
31
31
skip_build=0 # 1=skip Git repo extraction and Fledge build
32
32
@@ -124,15 +124,15 @@ if [[ $skip_build == 0 ]]; then
124
124
125
125
# Enables/verifies the environment for the build
126
126
source scl_source enable ${rhpg_pkg}
127
- status_rh_postgresql96 =$?
127
+ status_rh_postgresql =$?
128
128
129
129
source scl_source enable ${rhgcc_pkg}
130
130
status_devtoolset=$?
131
131
132
132
command -v pg_isready > /dev/null
133
133
status_pg_isready=$?
134
134
135
- if [[ $status_rh_postgresql96 != 0 ]]; then
135
+ if [[ $status_rh_postgresql != 0 ]]; then
136
136
echo " ERROR : it is not possible to enable the ${rhpg_pkg} environment"
137
137
exit 1
138
138
fi
You can’t perform that action at this time.
0 commit comments