Skip to content
This repository has been archived by the owner on Nov 7, 2019. It is now read-only.

Commit

Permalink
Fixing line endings and changing a few style things in the file so th…
Browse files Browse the repository at this point in the history
…e change gets picked up by git, not because I thought it required a change
  • Loading branch information
SlexAxton committed Oct 30, 2012
1 parent bc2f35d commit 20e7c0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
9 changes: 4 additions & 5 deletions bin/sake
@@ -1,7 +1,6 @@
#!/usr/bin/env node

var path = require('path')
var fs = require('fs')
var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib')

require(lib + "/sake").run()
var path = require('path');
var fs = require('fs');
var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib');
require(lib + '/sake').run();
3 changes: 1 addition & 2 deletions bin/six
Expand Up @@ -3,5 +3,4 @@
var path = require('path');
var fs = require('fs');
var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib');

require(lib + '/command').run();
require(lib + '/command').run();

0 comments on commit 20e7c0a

Please sign in to comment.