Skip to content

Commit 76238b9

Browse files
committed
[build] 13
1 parent 490572a commit 76238b9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

build/pypi.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,16 @@ class pypi {
7676

7777

7878
pythonBuild () {
79-
execSync(`cd ${this.tempPyDir} && python -m build`);
80-
execSync(`cd ${this.tempPyDir} && twine upload dist/*`, {
79+
const output1 = execSync(`cd ${this.tempPyDir} && python -m build`);
80+
console.log(output1.toString());
81+
82+
const output2 = execSync(`cd ${this.tempPyDir} && twine upload dist/*`, {
8183
env: {
8284
TWINE_USERNAME: '__token__',
8385
TWINE_PASSWORD: this.pypiApiSecret
8486
}
8587
});
88+
console.log(output2.toString());
8689
}
8790
}
8891

0 commit comments

Comments
 (0)