Skip to content

Commit 682d7bb

Browse files
author
Kelly Selden
committed
fix loadBlueprintFile typo
1 parent 2732313 commit 682d7bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/load-blueprint-file.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
const fs = require('fs-extra');
44
const path = require('path');
55

6-
async function loadSafeBlueprintFile(cwd) {
6+
async function loadBlueprintFile(cwd) {
77
try {
88
return await fs.readJson(path.join(cwd, 'config/ember-cli-update.json'));
99
} catch (err) {}
1010
}
1111

12-
module.exports = loadSafeBlueprintFile;
12+
module.exports = loadBlueprintFile;

0 commit comments

Comments
 (0)