crash on file notfound instead of comparing strings

This commit is contained in:
Clement Denis 2021-03-11 02:12:03 +00:00 committed by Clément
parent 141aa6d9d1
commit b5254e973b
2 changed files with 4 additions and 6 deletions

View File

@ -20,9 +20,8 @@ export const setup = async ({ path }) => {
)
const newFileName =
newFile || (keyword === 'encode' ? 'cypher.txt' : 'clear.txt')
const fileContent = await readFile(newFileName, 'utf8').catch((err) =>
err.code === 'ENOENT' ? 'output file not found' : err,
)
const fileContent = await readFile(newFileName, 'utf8')
return { data: fileContent }
}

View File

@ -22,9 +22,8 @@ export const setup = async ({ path }) => {
const run = async cmd => {
const cmdPath = isAbsolute(cmd) ? cmd : join(dir, cmd)
const { stdout } = await exec(`node ${path} ${cmdPath}`)
const fileContent = await readFile(`vip.txt`, 'utf8').catch(err =>
err.code === 'ENOENT' ? 'output file not found' : err,
)
const fileContent = await readFile(`vip.txt`, 'utf8')
return { data: fileContent }
}