Skip to content

Commit 6b92cac

Browse files
committed
Fixed path to help file
1 parent 55c3278 commit 6b92cac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const minimist = require('minimist')
66
const Fastify = require('fastify')
77
const path = require('path')
88
const fs = require('fs')
9-
const help = fs.readFileSync('./help.txt', 'utf8')
9+
const help = fs.readFileSync(path.join(__dirname, 'help.txt'), 'utf8')
1010

1111
function start (opts) {
1212
if (opts.help) {

0 commit comments

Comments
 (0)