Skip to content

Commit

Permalink
Convert cvd create flags to absolute paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jemoreira committed Nov 11, 2024
1 parent c5bd0ba commit e5de53b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/cvd/cuttlefish/host/commands/cvd/cli/commands/create.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,8 @@ Result<cvd::Response> CvdCreateCommandHandler::Handle(
"\nMaybe try `cvd fetch` or running `lunch "
"<target>` to enable starting a CF device?");
// CreationAnalyzer needs these to be set in the environment
envs[kAndroidHostOut] = flags.host_path;
envs[kAndroidProductOut] = flags.product_path;
envs[kAndroidHostOut] = AbsolutePath(flags.host_path);
envs[kAndroidProductOut] = AbsolutePath(flags.product_path);
auto group = CF_EXPECT(
GetOrCreateGroup(subcmd_args, envs, request, flags.acquire_file_locks));

Expand Down

0 comments on commit e5de53b

Please sign in to comment.