Skip to content

Commit 7cd497b

Browse files
fix(test_downstream_projects): fix null pointer when skipping downstream projects
1 parent a60488b commit 7cd497b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_downstream_projects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ try {
7575

7676
Object.keys(config).forEach(key => {
7777
if (DOWNSTREAM_PKGS.length && DOWNSTREAM_PKGS.indexOf(key) === -1) {
78-
console.log(callback.constructor.name + ": " + key + ' not in DOWNSTREAM_PKGS, skipping...');
78+
console.log(`${key} not in DOWNSTREAM_PKGS, skipping...`);
7979
return;
8080
}
8181

0 commit comments

Comments
 (0)