Slightly more correct but probably same effect
This commit is contained in:
parent
e1ed1452ec
commit
17d0167611
|
@ -335,7 +335,8 @@ async function executeDepGraph({ depgraph, manual, publish, yes, targets }) {
|
||||||
promises.published[target] = artifacts[target].getPublishedHash(info);
|
promises.published[target] = artifacts[target].getPublishedHash(info);
|
||||||
promises.desired[target] = (async () => {
|
promises.desired[target] = (async () => {
|
||||||
if (manual) {
|
if (manual) {
|
||||||
return null;
|
// Artifact has no dependencies in this case.
|
||||||
|
return await artifacts[target].getDesiredHash({});
|
||||||
}
|
}
|
||||||
const dependencyHashes = {};
|
const dependencyHashes = {};
|
||||||
for (const dependency of artifacts[target].dependencies) {
|
for (const dependency of artifacts[target].dependencies) {
|
||||||
|
|
Loading…
Reference in New Issue