当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
10 Star 105 Fork 34

code4everything/wetool
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
startup.py 666 Bytes
一键复制 编辑 原始数据 按行查看 历史
Wands 提交于 2021-04-30 15:39 . feat: support debug by args
# coding:utf-8
import platform
import os
import sys
system = platform.system()
jvm_option = ''
wetool_option = ''
for arg in sys.argv[1:]:
if 'debug' == arg:
jvm_option = '-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005'
wetool_option = 'debug'
break
if 'Windows' == system:
os.system('javaw -jar %s wetool-win.jar %s' % (jvm_option, wetool_option))
elif 'Darwin' == system:
os.system('java -jar %s wetool-mac.jar %s &' % (jvm_option, wetool_option))
elif 'Linux' == system:
os.system('java -jar %s wetool-linux.jar %s &'% (jvm_option, wetool_option))
else:
print('unknown platform')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/code4everything/wetool.git
git@gitee.com:code4everything/wetool.git
code4everything
wetool
wetool
master

搜索帮助