Disabled hackathon starter generator on Windows platform until further notice. Fixes #170
This commit is contained in:
8
setup.js
8
setup.js
@ -3,6 +3,14 @@ var os = require('os');
|
||||
var blessed = require('blessed');
|
||||
var multiline = require('multiline');
|
||||
|
||||
if (os.platform() === 'win32') {
|
||||
console.log('*************************************************************');
|
||||
console.log('Hackthon Starter Generator has been disalbed on Windows until');
|
||||
console.log('https://github.com/chjj/blessed is fixed or until I find a');
|
||||
console.log('better CLI module.');
|
||||
console.log('*************************************************************');
|
||||
process.exit();
|
||||
}
|
||||
var screen = blessed.screen({
|
||||
autoPadding: true
|
||||
});
|
||||
|
Reference in New Issue
Block a user