2

使用 $ nano ~/.bash_profile 更新了我的 shell 脚本,添加了以下行 export PATH=~/directory/.jiri_root/bin:$PATH source ~/directory/scripts/fx-env.sh

我遇到的问题是,每当我尝试运行 fx 命令时,我都会收到一条错误消息“在目录的父级中找不到平台源树”。我必须使用 $ fx set product.board 但显示错误。

4

1 回答 1

4

这意味着您当前的工作目录在 Fuchsia 树之外。您必须从树的顶级目录或子目录运行这些命令。例如,如果您的源结帐是/home/fuchsia,但您是当前目录,/home您将看到此错误:

/home $ fx help
Cannot find the Platform Source Tree in a parent of directory: /home

/home $ cd fuchsia
/home/fuchsia $ fx help
usage: fx [--dir BUILD_DIR] [-d DEVICE_NAME] [-i] [-x] COMMAND [...]

请注意,如果您设置了环境,也可以使用该fd命令快速跳转到树的顶层目录,无论您身在何处(它作为fx-env.sh.

例如:

/tmp/some/random/directory $ fd

/home/fuchsia $
于 2021-05-21T14:31:49.947 回答