From 0a5f8f29a288f57e91a90b9164adc3bbab683ace Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Sat, 26 Jul 2014 23:22:20 -0400 Subject: [PATCH] Disabled hackathon starter generator on Windows platform until further notice. Fixes #170 --- setup.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup.js b/setup.js index deb6f84c91..b19c55397c 100644 --- a/setup.js +++ b/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 });