Rename postVerification method to bootstrap

This commit is contained in:
probablycorey 2014-06-04 10:53:05 -07:00
parent 50445a73bd
commit 5434a26636

View File

@ -20,7 +20,7 @@ function executeCommands(commands, done, index) {
done(null);
}
function postVerification() {
function bootstrap() {
var apmInstallPath = path.resolve(__dirname, '..', 'apm');
if (!fs.existsSync(apmInstallPath))
fs.mkdirSync(apmInstallPath);
@ -50,4 +50,4 @@ function postVerification() {
executeCommands(commands, process.exit);
}
verifyRequirements(postVerification);
verifyRequirements(bootstrap);