修改金融版本打包名称

This commit is contained in:
zhang_xubo
2023-12-25 11:52:03 +08:00
parent 33b035fd68
commit 67ad03f2af
3 changed files with 6 additions and 2 deletions

View File

@ -128,7 +128,7 @@ while [ $# -gt 0 ]; do
done
if [ -e "$SCRIPT_DIR/utils/common.sh" ];then
source $SCRIPT_DIR/utils/common.sh
source $SCRIPT_DIR/utils/common.sh ${product_mode}
else
exit 1
fi

View File

@ -104,7 +104,7 @@ while [ $# -gt 0 ]; do
done
if [ -e "$SCRIPT_DIR/utils/common.sh" ];then
source $SCRIPT_DIR/utils/common.sh
source $SCRIPT_DIR/utils/common.sh ${product_mode}
else
exit 1
fi

View File

@ -12,6 +12,10 @@ bit=$(getconf LONG_BIT)
if [ "$bit" -eq 64 ]; then
declare PLATFORM=64
fi
product_mode=$1
if [ "$product_mode" == "finance" ]; then
product_name="openGauss-Finance"
fi
# 公共方法
#######################################################################