Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
luciopaiva committed Jan 20, 2022
1 parent 0e37abd commit db2a07a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/prerelease.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function verifyFiles() {
console.info("✓ file list verified");
}

function checkForExtranousFiles() {
function checkForExtraneousFiles() {
for (const file of fs.readdirSync(DIST_FOLDER)) {
if (!ALL_FILES.has(file)) {
throw new Error(`Extraneous file "${file}" found in release folder.`);
Expand All @@ -63,7 +63,7 @@ async function stage(command: string) {
await stage("npm run integration");
copyBaseFiles();
verifyFiles();
checkForExtranousFiles();
checkForExtraneousFiles();
} catch (e) {
console.error("Prerelease script failed");
throw e;
Expand Down

0 comments on commit db2a07a

Please sign in to comment.