1 Star 1 Fork 0

超维空间科技/ArduPilot-cwkj

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
waf 757 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
from __future__ import print_function
import subprocess
import os.path as p
import sys
d = p.dirname(p.realpath(__file__))
waf_light = p.join(d, 'modules', 'waf', 'waf-light')
python = sys.executable
try:
subprocess.check_call([python, waf_light] + sys.argv[1:])
except subprocess.CalledProcessError as e:
if e.returncode != 2 or p.isfile(waf_light):
sys.exit(1)
print('Missing waf submodule. Trying to get it')
try:
subprocess.check_call(['git', 'submodule', 'update', '--init',
'modules/waf'])
except subprocess.CalledProcessError:
print('Could not update submodule', file=sys.stderr)
sys.exit(1)
print('Submodules OK, try running again')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Mbot_admin/ardu-pilot-cwkj.git
git@gitee.com:Mbot_admin/ardu-pilot-cwkj.git
Mbot_admin
ardu-pilot-cwkj
ArduPilot-cwkj
V1.0

搜索帮助