Skip to content

Commit

Permalink
fix(task): renovate task to use __dirname
Browse files Browse the repository at this point in the history
TAG: latest
  • Loading branch information
tunnckoCore committed Aug 10, 2017
1 parent d22a931 commit 12770fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/renovate.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = ({ app }) => {
const newConfig =
helaFolder === process.cwd()
? path.join(helaFolder, 'renovate.json')
: path.join(helaFolder, '..', '..', 'renovate.json')
: path.join(__dirname, '..', '..', 'renovate.json')

const onerror = (er) => app.emit('error', er)

Expand Down

0 comments on commit 12770fa

Please sign in to comment.