Remove prestart script.

This commit is contained in:
Mike Cao 2022-04-07 20:13:53 -07:00
parent f2d17996eb
commit a4e2e46834
3 changed files with 4 additions and 23 deletions

View file

@ -1,10 +0,0 @@
require('dotenv').config();
const { sendTelemetry } = require('./telemetry');
async function run() {
if (!process.env.DISABLE_TELEMETRY) {
await sendTelemetry('start');
}
}
run();