Skip to content

Commit

Permalink
Release 4.6 build
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandstirnimann committed Nov 17, 2023
1 parent a9f0af3 commit f1e34b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 4.x
## 4.6
* New input variable `<function_name>_SEVERITY` for the `check.sh` script [(issue #30)](https://github.com/Trivadis/pgoperate/issues/30)
* Bug fix related to the installer that custom_check.lib is not overwritten anymore [(issue #29)](https://github.com/Trivadis/pgoperate/issues/29)

Expand Down
2 changes: 1 addition & 1 deletion bin/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.5
4.6
6 changes: 4 additions & 2 deletions bin/install_pgoperate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
#
# Author: Aychin Gasimov (AYG)
# Desc: Script to install pgBasEnv from scratch or upgrade existing version.
# Desc: Script to install pgOperate from scratch or upgrade existing version.
# Check README.md for details.
#
# Change log:
Expand Down Expand Up @@ -72,7 +72,9 @@ mkdir -p $TVDBASE/pgoperate
[[ $? -gt 0 ]] && echo "ERROR: Cannot continue! Check the path specified." && exit 1 || echo "SUCCESS"

echo -e "\n>>> INSTALLATION STEP: Extracting files into $TVDBASE/pgoperate.\n"
tar -xvf $TARFILE -C $TVDBASE
# Do not overwrite the custom_check.lib in case of an existing installation (upgrade case)
test -f $PGOPERATE_BASE/lib/custom_check.lib && export EXCLUDELIB="--exclude=pgoperate/lib/custom_check.lib"
tar -xvf $TARFILE -C $TVDBASE $EXCLUDELIB
[[ $? -gt 0 ]] && echo "ERROR: Cannot continue! Check the output and fix issue." && exit 1 || echo "SUCCESS"

echo -e "\n>>> INSTALLATION STEP: Add aliases to \$PGBASENV_BASE/etc/pgbasenv_standard.conf.\n"
Expand Down
Binary file not shown.

0 comments on commit f1e34b5

Please sign in to comment.