Skip to content

Commit

Permalink
windows is not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
vmarchaud committed Jul 13, 2016
1 parent d62606d commit 71fa9e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions lib/vizion.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ var identify = require('./identify.js');
vizion.analyze = function(argv, cb) {
var _folder = (argv.folder != undefined) ? argv.folder : '.';

if (process.platform === 'win32' || process.platform === 'win64')
return c('vizion is not yet compatible with Windows.');

identify(_folder, function(type, folder) {
if (ALL[type])
return ALL[type].parse(folder, cb);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vizion",
"version": "0.2.12",
"version": "0.2.13",
"engines": {
"node": ">=0.10"
},
Expand Down

0 comments on commit 71fa9e8

Please sign in to comment.