Skip to content

Commit

Permalink
Merge pull request #4322 from jjmiv/patch-3
Browse files Browse the repository at this point in the history
Update ADDON_HOOKS.md
  • Loading branch information
rwjblue committed Jun 22, 2015
2 parents d118124 + 05a7e50 commit 77cfa35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ADDON_HOOKS.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Augments the applications configuration settings. Object returned from this hoo
Addon.prototype.config = function (env, baseConfig) {
var configPath = path.join(this.root, 'config', 'environment.js');

if (fs.existsSync(configPath)) {
if (existsSync(configPath)) {
var configGenerator = require(configPath);

return configGenerator(env, baseConfig);
Expand Down Expand Up @@ -85,7 +85,7 @@ Tells the application where your blueprints exist.
Addon.prototype.blueprintsPath = function() {
var blueprintPath = path.join(this.root, 'blueprints');

if (fs.existsSync(blueprintPath)) {
if (existsSync(blueprintPath)) {
return blueprintPath;
}
};
Expand Down

0 comments on commit 77cfa35

Please sign in to comment.