Skip to content

Commit 4b02c49

Browse files
authored
Create build.sh
1 parent d343e57 commit 4b02c49

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

build.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
pip install build
4+
rm -rf ./dist
5+
6+
build_package() {
7+
python3 -m build ./packages/$1 -o ./dist
8+
}
9+
10+
build_package tencent-cloud-sdk-auth
11+
build_package tencent-cloud-sdk-common
12+
build_package tencent-cloud-sdk-core
13+
build_package tencent-cloud-sdk-serverless-database
14+
build_package tencent-cloud-sdk-serverless-functions
15+
build_package ..

0 commit comments

Comments
 (0)