diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2025-05-09 14:55:05 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-19 12:33:06 +0200 |
commit | c1340f6124f288cad8f800c94e5ff34259244b60 (patch) | |
tree | c19aafdfe5e216e50026f2ee360c24c05fe130c8 /src | |
parent | 350182400feccc99aba9fbf290d6f7249adb3a21 (diff) | |
download | justbuild-c1340f6124f288cad8f800c94e5ff34259244b60.tar.gz |
LocalAction: Fix collection of directory symlink
(cherry-picked from fe4006fce755432b1ae3a273873f3649512c7f94)
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/execution_api/local/local_action.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/local/local_action.cpp b/src/buildtool/execution_api/local/local_action.cpp index 0d73d923..0328ca98 100644 --- a/src/buildtool/execution_api/local/local_action.cpp +++ b/src/buildtool/execution_api/local/local_action.cpp @@ -525,7 +525,7 @@ auto LocalAction::CollectAndStoreOutputs( " - symlink {}: {}", path, out_symlink.target()); - result->mutable_output_file_symlinks()->Add( + result->mutable_output_directory_symlinks()->Add( std::move(out_symlink)); } else { |