mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-27 14:46:22 -04:00
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
const bin = require('./');
|
|
const log = require('logalot');
|
|
|
|
bin.run(['version'], err => {
|
|
if (err) {
|
|
log.error(err.message);
|
|
log.error('Hugo binary installation failed');
|
|
return;
|
|
}
|
|
log.success('Hugo binary is installed successfully');
|
|
});
|