Merge pull request #30452 from taosdata/fix/main/tdgpt-name

fix: update product names in release script for TDgpt
This commit is contained in:
WANG Xu 2025-03-25 16:22:43 +08:00 committed by GitHub
commit 4c023e5a4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@ if [ -z "$edition" ] || [ -z "$version" ]; then
exit 1
fi
if [ "$edition" == "enterprise" ]; then
productName="TDengine-enterprise-anode"
productName="TDengine-enterprise-TDgpt"
fi
if [ "$edition" == "community" ]; then
productName="TDengine-anode"
productName="TDengine-TDgpt"
fi
echo start to build release package, edition: ${edition}, version: ${version}