projects
/
scpubgit/DX.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b413e0b
)
show resolve step dependency info
Matt S Trout [Tue, 9 Aug 2016 19:41:57 +0000 (19:41 +0000)]
lib/DX/Deparse.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DX/Deparse.pm
b/lib/DX/Deparse.pm
index
7326775
..
228c1b0
100644
(file)
--- a/
lib/DX/Deparse.pm
+++ b/
lib/DX/Deparse.pm
@@
-193,6
+193,11
@@
sub _fmt_step_resolveproposition {
($step->alternative_step
? [ alternative_step => '...' ]
: ()),
+ [ depends_on => [
+ map bless([ @$_ ], 'DX::Dependency'),
+ map @{$_}[1..$#$_],
+ @{$step->depends_on}
+ ] ],
], $meta);
}