Update extensions/ql-vscode/src/distribution.ts

Co-authored-by: Andrew Eisenberg <aeisenberg@github.com>
This commit is contained in:
jcreedcmu
2020-06-03 14:55:00 -04:00
committed by GitHub
parent c29f4d4c79
commit 60f47e8ee3

View File

@@ -377,7 +377,7 @@ class ExtensionSpecificDistributionManager {
release => {
const matchingAssets = release.assets.filter(asset => asset.name === requiredAssetName);
if (matchingAssets.length === 0) {
// For example, this could be a release with only platform-specific assets.
// For example, this could be a release with no platform-specific assets.
logger.log(`INFO: Ignoring a release with no assets named ${requiredAssetName}`);
return false;
}