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

Commit

Permalink
Fix line ending from Windows to Unix style
Browse files Browse the repository at this point in the history
See busterjs/buster#401 for reference.
  • Loading branch information
henvic committed Dec 16, 2014
1 parent c807554 commit 00a18bb
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions bin/gh.js 100644 → 100755
@@ -1,22 +1,22 @@
#!/usr/bin/env node

/*
* Copyright 2013, All Rights Reserved.
*
* Code licensed under the BSD License:
* https://github.com/node-gh/gh/blob/master/LICENSE.md
*
* @author Eduardo Lundgren <edu@rdo.io>
*/

'use strict';

var npm = require('npm'),
logger = require('../lib/logger');

npm.load(function (err) {
if (err) {
return logger.error(err);
}
require('../lib/cmd.js');
});
#!/usr/bin/env node

/*
* Copyright 2013, All Rights Reserved.
*
* Code licensed under the BSD License:
* https://github.com/node-gh/gh/blob/master/LICENSE.md
*
* @author Eduardo Lundgren <edu@rdo.io>
*/

'use strict';

var npm = require('npm'),
logger = require('../lib/logger');

npm.load(function (err) {
if (err) {
return logger.error(err);
}
require('../lib/cmd.js');
});

0 comments on commit 00a18bb

Please sign in to comment.