.gclient文件

//注意以.开头的文件名在linux下都是隐藏文件,需要使用ll 或者ls -all 才可以查看.
.gclient文件必须有,否则会报类似下面的错误:

Traceback (most recent call last):
File "/webrtc/depot_tools/gn.py", line 71, in <module>
sys.exit(main(sys.argv))
File "/webrtc/depot_tools/gn.py", line 49, in main
'gn', 'gn' + gclient_utils.GetExeSuffix())
File "/usr/lib/python2.7/posixpath.py", line 70, in join
elif path == '' or path.endswith('/'):
AttributeError: 'NoneType' object has no attribute 'endswith'
 
原文链接:https://blog.csdn.net/zhangkai19890929/article/details/81904517

猜你喜欢

转载自www.cnblogs.com/hshy/p/12031403.html