summaryrefslogtreecommitdiff
path: root/lib/validate.js
blob: 4b561d47d8f530643016675bf2244f32c4988edf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * mongo-edu
 *
 * Copyright (c) 2014-2015 Przemyslaw Pluta
 * Licensed under the MIT license.
 * https://github.com/przemyslawpluta/mongo-edu/blob/master/LICENSE
 */

var mkdirp = require('mkdirp'),
    prompts = require('./prompts');

module.exports.init = function init(opt, callback) {

    'use strict';

    var profile = prompts.profile;

    if (opt.u !== '') { profile[0].default = opt.u; }

    mkdirp(opt.d, function mkdirp(err) {
        if (err !== null) { return callback(err); }
        callback(null, profile);
    });

};