Skip to content

Commit

Permalink
Merge pull request #96 from steelbrain/steelbrain/hotfix
Browse files Browse the repository at this point in the history
Hotfix
  • Loading branch information
Steel Brain authored Apr 12, 2017
2 parents 3b134b4 + 7235bc6 commit 14019c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export async function getDependencies(packageName: string): Promise<Array<Depend

export async function promptUser(packageName: string, dependencies: Array<Dependency>): Promise<'Yes' | 'No' | 'Never'> {
const oldConfigPath = Path.join(atom.getConfigDirPath(), 'package-deps-state.json')
let ignoredPackages = atom.config.get('atom-package-deps.ignored')
let ignoredPackages = atom.config.get('atom-package-deps.ignored') || []

if (await FS.exists(oldConfigPath)) {
const oldConfig = JSON.parse(await FS.readFile(oldConfigPath, 'utf8'))
Expand Down

0 comments on commit 14019c9

Please sign in to comment.