UNPKG

@boostbank/pterodactyl-installer

Version:
24 lines (21 loc) 485 B
"use strict"; 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;