Compare commits

..

1 Commits

Author SHA1 Message Date
calebboyd fe5aa0be09 fix: dequote 2017-09-29 23:16:09 -05:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "nexe",
"description": "Create a single executable out of your Node.js application",
"license": "MIT",
"version": "2.0.0-rc.10",
"version": "2.0.0-rc.11",
"contributors": [
"Craig Condon <craig.j.condon@gmail.com> (http://crcn.io)",
"Jared Allard <jaredallard@outlook.com>",
+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()