Skip to content

Commit 5955988

Browse files
committed
fix: fix deps updater log
1 parent af33548 commit 5955988

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/commands/package/update-dependencies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default class extends Command {
4848
"commit": process.cli.options.commit,
4949
} );
5050

51-
if ( res.ok && !res.data?.updates ) continue;
51+
if ( res.ok && !res.data?.log ) continue;
5252

5353
if ( printNewLine ) {
5454
console.log();

lib/commands/workspace/update-dependencies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export default class extends Command {
9090
var hasErrors, printNewLine;
9191

9292
while ( ( res = await threads.getResult() ) ) {
93-
if ( res.ok && !res.data?.updates ) continue;
93+
if ( res.ok && !res.data?.log ) continue;
9494

9595
const pkg = res.data.package;
9696

0 commit comments

Comments
 (0)