Skip to content

Commit

Permalink
"win" is also part of "darwin"
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario L Gutierrez committed Mar 4, 2013
1 parent bfa2cec commit 205d4fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "projmate-shell",
"version": "0.0.1",
"version": "0.0.2",
"description": "ShellJS Extended",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion runner.js
Expand Up @@ -6,7 +6,7 @@

var async = require('async');
var cp = require('child_process');
var isWindows = ~require('os').platform().indexOf('win');
var isWindows = require('os').platform().indexOf('win') == 0;
var Path = require('path');
var Fs = require('fs');

Expand Down

0 comments on commit 205d4fe

Please sign in to comment.