Skip to content

Commit 4c3149f

Browse files
committed
feat: print information when no config updates were found
1 parent 3cee3fe commit 4c3149f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/nc-download.js

+4
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,15 @@ module.exports = {
4545
}
4646

4747
let namingConventions = config.get('namingConventions') || [];
48+
4849
let wasUpdated = upsert(namingConventions, {name: ncJson.name}, ncJson);
4950
if (wasUpdated) {
5051
config.set('namingConventions', namingConventions);
5152
console.log(ncJson.name + ' naming convention updated');
5253
}
54+
else {
55+
console.log('No updates found for ' + ncJson.name + ' naming convention')
56+
}
5357
}
5458
}
5559
});

0 commit comments

Comments
 (0)