fix: dequote

This commit is contained in:
calebboyd
2017-09-29 23:16:09 -05:00
parent 2a2526d3bc
commit fe5aa0be09
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ export default async function cli(compiler: NexeCompiler, next: () => Promise<vo
let stdInUsed = false
if (!process.stdin.isTTY && compiler.options.enableStdIn) {
stdInUsed = true
compiler.input = await getStdIn(process.stdin)
compiler.input = dequote(await getStdIn(process.stdin))
}
await next()