From 10d651fe9dd30b8e2d662ec625738b14cd46bfb7 Mon Sep 17 00:00:00 2001 From: jianghongbo Date: Wed, 8 Feb 2023 10:55:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC=E5=8F=B7?= =?UTF-8?q?=E8=87=B35.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- build.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f347626..990a303 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,11 @@ yum install python3 python3-devel 3. 下载`openGauss-connector-python-psycopg2`仓库代码,进入到根目录下,执行 ``` -sh build.sh -bd /data/compile/openGauss-server/dest/ -v 3.0.0 +sh build.sh -bd /data/compile/openGauss-server/dest/ -v 5.0.0 ``` **说明** \ -bd: 指定openGauss数据库构建结果目录 \ --v: 指定构建包的版本号。不指定则默认为3.0.0 +-v: 指定构建包的版本号。不指定则默认为5.0.0 编译完成后的驱动,在 `output` 目录下。 diff --git a/build.sh b/build.sh index bec50a9..5be77ee 100644 --- a/build.sh +++ b/build.sh @@ -63,7 +63,7 @@ function print_help() ##default install version storage path declare db_name_for_package='openGauss' -declare version_number='3.0.0' +declare version_number='5.0.0' if [ $# = 0 ] ; then echo "missing option" -- Gitee