Minor lint tweaks. (#69)

This commit is contained in:
XhmikosR
2018-10-07 17:42:52 +09:00
committed by Shun Sato
parent 91ae0484c8
commit ea361afa4a
3 changed files with 10 additions and 10 deletions
+8 -8
View File
@@ -1,6 +1,6 @@
const path = require('path');
const bin = require('./');
const log = require('logalot');
const bin = require('.');
function getProjectRoot() {
// projectRoot on postinstall could be INIT_CWD introduced in npm>=5.4
@@ -21,10 +21,10 @@ function getProjectRoot() {
}
bin(getProjectRoot()).run(['version'])
.then(() => {
log.success('Hugo binary is installed successfully');
})
.catch(err => {
log.error(err.message);
log.error('Hugo binary installation failed');
});
.then(() => {
log.success('Hugo binary is installed successfully');
})
.catch(err => {
log.error(err.message);
log.error('Hugo binary installation failed');
});