projects
/
scpubgit/DX.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
57542e0
)
value_path will work fine for dependencies, identity_path not required
Matt S Trout [Sat, 17 Sep 2016 17:34:11 +0000 (17:34 +0000)]
lib/DX/Step/ResolveProposition.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DX/Step/ResolveProposition.pm
b/lib/DX/Step/ResolveProposition.pm
index
9efd8b3
..
6292ba5
100644
(file)
--- a/
lib/DX/Step/ResolveProposition.pm
+++ b/
lib/DX/Step/ResolveProposition.pm
@@
-25,7
+25,7
@@
has depends_on => (is => 'ro', required => 1, coerce => sub {
my ($type, @path) = @$dep;
push @exp, [
$type,
- map { ref() ? @{$_->identity_path or next DEP} : $_ } @path
+ map { ref() ? @{$_->value_path or next DEP} : $_ } @path
];
}
(@exp ? [ $on, @exp ] : ());