We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d343e57 commit 4b02c49Copy full SHA for 4b02c49
build.sh
@@ -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