We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9690a36 commit 0176e71Copy full SHA for 0176e71
cmds/cmd_package.py
@@ -490,10 +490,8 @@ def pre_package_update():
490
bsp_root = Import('bsp_root')
491
492
if not os.path.exists('.config'):
493
- print (
494
- "Can't find file .config.Maybe your working directory isn't in bsp root now.")
495
- print ("if your working directory isn't in bsp root now,please change your working directory to bsp root.")
496
- print ("if your working directory is in bsp root now, please use menuconfig command to create .config file first.")
+ print ("当前路径下没有发现 .config 文件,请确保当前目录为 BSP 根目录。")
+ print ("如果确定当前目录为 BSP 根目录,请先使用 <menuconfig> 命令来生成 .config 文件。")
497
return False
498
499
bsp_packages_path = os.path.join(bsp_root, 'packages')
0 commit comments