Hello --
I am trying to use copybara to move a source repo into a nested directory inside another repo.
source: repoA.git
destination: repoB.git into thirdparty/app/
However when I use destiniation_files = glob(["**"]) it clobbers the root of repoB
Is there a good way to change the target to point to thirdparty/app so that repoA gets deposited into repoB/thirdparty/app/
Thanks!