@boostbank/pterodactyl-installer
Version:
Helpful Pterodactyl Installer
24 lines (21 loc) • 485 B
JavaScript
;
const colors = require('colors');
const Step = require("./Step");
const { sh } = require("./../tools/process-runner");
const fs = require('fs');
class PreInstall extends Step {
constructor() {
super("preinstall");
}
run(args) {
return new Promise(async resolve => {
try {
this.notifyStart();
process.exit(1);
} catch (e) {
this.errorOut(e);
}
});
}
}
module.exports = PreInstall;