修改金融版本打包名称
This commit is contained in:
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
# 公共方法
|
||||
#######################################################################
|
||||
|
||||
Reference in New Issue
Block a user