Skip to content

Commit

Permalink
Fixed path to help file
Browse files Browse the repository at this point in the history
  • Loading branch information
delvedor committed Nov 30, 2016
1 parent 55c3278 commit 6b92cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const minimist = require('minimist')
const Fastify = require('fastify')
const path = require('path')
const fs = require('fs')
const help = fs.readFileSync('./help.txt', 'utf8')
const help = fs.readFileSync(path.join(__dirname, 'help.txt'), 'utf8')

function start (opts) {
if (opts.help) {
Expand Down

0 comments on commit 6b92cac

Please sign in to comment.