Skip to content

Commit

Permalink
Remove another insiders check (#25817)
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles-Gagnon authored Aug 8, 2024
1 parent 9d6caa2 commit 8a1b14a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/validateGalleries.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,12 +210,14 @@ async function validateExtension(galleryFilePath, extensionJson) {

// Check active extensions to make sure they're in insiders if they exist in stable. We don't want to have an extension only be in stable, they
// should always be released in insiders first (or at the same time).
/* We are no longer publishing insiders builds so disable checks for now
if (galleryFilePath === STABLE_GALLERY_PATH && !deprecatedExtension.includes(extensionName)) {
const insidersExtensionJson = findExtension(INSIDERS_GALLERY_JSON, extensionName);
if (!insidersExtensionJson) {
throw new Error(`${galleryFilePath} - Extension ${extensionName} exists in the stable gallery but not in the insiders gallery. An extension must always be in both if it's in the stable gallery.`);
}
}
*/
}

/**
Expand Down

0 comments on commit 8a1b14a

Please sign in to comment.