You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
715 B
16 lines
715 B
|
7 days ago
|
# -*- coding: utf-8 -*-
|
||
|
|
"""票 05:打包 crm-app(复用 t04-package.cmd)。"""
|
||
|
|
import io, sys, subprocess
|
||
|
|
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
||
|
|
|
||
|
|
r = subprocess.run(
|
||
|
|
['cmd', '/c', r'e:\code\crm-backend-matt\.scratch\opportunity-bugfix\t04-package.cmd'],
|
||
|
|
capture_output=True, cwd=r'e:\code\crm-backend-matt')
|
||
|
|
out = r.stdout.decode('utf-8', errors='replace') + r.stderr.decode('utf-8', errors='replace')
|
||
|
|
with open(r'e:\code\crm-backend-matt\.scratch\opportunity-bugfix\t05-package.log', 'w', encoding='utf-8') as f:
|
||
|
|
f.write(out)
|
||
|
|
print('EXIT=', r.returncode)
|
||
|
|
for ln in out.splitlines():
|
||
|
|
if 'BUILD' in ln or 'ERROR' in ln or 'Building crm-app' in ln:
|
||
|
|
print(ln)
|