This repository has been archived by the owner on Nov 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix line ending from Windows to Unix style
See busterjs/buster#401 for reference.
- Loading branch information
Showing
1 changed file
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> | ||
*/ | ||
|
||
'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 <[email protected]> | ||
*/ | ||
|
||
'use strict'; | ||
|
||
var npm = require('npm'), | ||
logger = require('../lib/logger'); | ||
|
||
npm.load(function (err) { | ||
if (err) { | ||
return logger.error(err); | ||
} | ||
require('../lib/cmd.js'); | ||
}); |