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 b2067e1 commit 66faa2bCopy full SHA for 66faa2b
base/cvd/cuttlefish/host/commands/cvd/cli/commands/create.cpp
@@ -378,8 +378,8 @@ Result<cvd::Response> CvdCreateCommandHandler::Handle(
378
"\nMaybe try `cvd fetch` or running `lunch "
379
"<target>` to enable starting a CF device?");
380
// CreationAnalyzer needs these to be set in the environment
381
- envs[kAndroidHostOut] = flags.host_path;
382
- envs[kAndroidProductOut] = flags.product_path;
+ envs[kAndroidHostOut] = AbsolutePath(flags.host_path);
+ envs[kAndroidProductOut] = AbsolutePath(flags.product_path);
383
auto group = CF_EXPECT(
384
GetOrCreateGroup(subcmd_args, envs, request, flags.acquire_file_locks));
385
0 commit comments