diff options
Diffstat (limited to 'semantic/tasks/check-install.js')
| -rw-r--r-- | semantic/tasks/check-install.js | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/semantic/tasks/check-install.js b/semantic/tasks/check-install.js deleted file mode 100644 index a82297e..0000000 --- a/semantic/tasks/check-install.js +++ /dev/null @@ -1,27 +0,0 @@ -/******************************* - * Check Install - *******************************/ - -var - // node dependencies - gulp = require('gulp'), - console = require('better-console'), - isSetup = require('./config/project/install').isSetup, - - install = require('./install'), - watch = require('./watch') -; - -// export task -module.exports = function (callback) { - - setTimeout(function () { - if (!isSetup()) { - console.log('Starting install...'); - install(callback); - } else { - watch(callback); - } - }, 50); // Delay to allow console.clear to remove messages from check event - -};
\ No newline at end of file |