From a9f31c6006480a614c065f440281a271ff9fb674 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 25 Jul 2020 18:09:29 +0100 Subject: [PATCH] nailing-cargo: Chase path dependencies Closes #9 Signed-off-by: Ian Jackson --- nailing-cargo | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nailing-cargo b/nailing-cargo index a8058ed..4a62eb8 100755 --- a/nailing-cargo +++ b/nailing-cargo @@ -337,6 +337,11 @@ sub read_manifest ($$$) { next; } $manifests{$manifest} = [ $toml, $org_subdir ] if $p; + foreach my $dep (get_dependency_tables $toml) { + next unless defined $dep->{path}; + queue_referenced_path($dep->{path}, $org_subdir, + "dependency of $subdir, $why"); + } return ($p, $ws); } return undef; -- 2.30.2