move debug-cli into tools dir

This commit is contained in:
Jannis R 2019-07-08 22:46:37 +02:00 committed by Jannis Redmann
parent c6de12a707
commit 0bcc9016cd
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
const mri = require('mri')
const {join} = require('path')
const createClient = require('..')
const createClient = require('../..')
const showError = (err) => {
console.error(err)
@ -39,7 +39,7 @@ const parseArgs = [
const argv = mri(process.argv.slice(2))
const profile = require(join('../p', argv._[0]))
const profile = require(join('../../p', argv._[0]))
const client = createClient(profile, 'hafas-client debug CLI')
const fnName = argv._[1]