Skip to content

Commit c86b9e1

Browse files
committed
remove old homebrew scripts
1 parent 1619c5d commit c86b9e1

File tree

3 files changed

+0
-110
lines changed

3 files changed

+0
-110
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
"publish-npm": "node scripts/publish-npm.js",
5252
"report-missing-help": "lerna run --stream --scope @mongosh/shell-api report-missing-help",
5353
"report-supported-api": "lerna run --stream --scope @mongosh/shell-api report-supported-api",
54-
"generate-homebrew-formula": "node scripts/generate-homebrew-formula",
5554
"report-coverage": "nyc report --reporter=text --reporter=html && nyc check-coverage --lines=95",
5655
"generate-error-overview": "lerna run --stream --scope @mongosh/errors generate-error-overview"
5756
},

scripts/generate-homebrew-formula.js

Lines changed: 0 additions & 99 deletions
This file was deleted.

scripts/publish-npm.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ const fs = require('fs');
33
const path = require('path');
44
const assert = require('assert');
55
const { gitClone, getLatestVersion, confirm } = require('./utils');
6-
const generateHomebrewFormula = require('./generate-homebrew-formula');
76

87
const rootPath = path.resolve(__dirname, '..');
98

@@ -164,15 +163,6 @@ async function publish() {
164163
console.info('already published to npm .. skipping');
165164
}
166165

167-
if (!isTaskDone('homebrew-formula', releaseDirPath)) {
168-
await generateHomebrewFormula(
169-
releaseDirPath,
170-
getLatestVersion()
171-
);
172-
} else {
173-
console.info('already generated .. skipping');
174-
}
175-
176166
console.info('done, now you can remove', releaseDirPath);
177167
}
178168

0 commit comments

Comments
 (0)