调整助手安装包的输出路径。

pull/32/merge
Apex Liu 2017-02-07 14:50:52 +08:00
parent 8508566a8c
commit c5d1baea86
2 changed files with 7 additions and 2 deletions

View File

@ -50,9 +50,14 @@ class BuilderWin(BuilderBase):
def build_installer(self):
cc.i('build assist package for website...')
name = 'tp-assist-{}'.format(VER_TELEPORT_ASSIST)
out_file = os.path.join(ROOT_PATH, 'dist', '{}.exe'.format(name))
name = 'teleport-assist-{}'.format(VER_TELEPORT_ASSIST)
out_path = os.path.join(ROOT_PATH, 'out', 'installer')
utils.makedirs(out_path)
out_file = os.path.join(out_path, '{}.exe'.format(name))
utils.remove(out_file)
self._build_installer()
# last_ver = 'teleport-assist-last-win.zip'

Binary file not shown.