Skip to content

Commit

Permalink
Delint.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed Dec 5, 2013
1 parent 358f6c8 commit dcb00da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var scripts = require('scripts')
*/
module.exports = function(options) {
if ('string' == typeof options) {
options = { dirname: options }
options = { dirname: options };
}
options = options || {};
var dirname = options.dirname || 'etc/env'
Expand All @@ -51,5 +51,5 @@ module.exports = function(options) {
debug('configuring environment: %s', env);
require(script).apply(this);
}
}
}
};
};
2 changes: 2 additions & 0 deletions test/package.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* global describe, it, expect */

var environment = require('..');

describe('bootable-environment', function() {
Expand Down

0 comments on commit dcb00da

Please sign in to comment.