You've already forked hugo-extended
mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2026-06-14 14:35:27 -04:00
Clean up tests
This commit is contained in:
+8
-5
@@ -2,8 +2,11 @@
|
||||
|
||||
const bin = require('.');
|
||||
|
||||
bin.run(['version']).then(() => {
|
||||
console.log('✔ Hugo installed successfully!');
|
||||
}).catch(error => {
|
||||
console.error('✖ ERROR: Hugo installation failed. :(\n', error);
|
||||
});
|
||||
(async () => {
|
||||
try {
|
||||
await bin.run(['version']);
|
||||
console.log('✔ Hugo installed successfully!');
|
||||
} catch (error) {
|
||||
console.error('✖ ERROR: Hugo installation failed. :(\n', error);
|
||||
}
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user