fix: missing cwd on resolve

This commit is contained in:
calebboyd
2018-10-20 11:31:05 -05:00
parent 0db8122f8f
commit e3f1d6fc74
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": "3.0.0-beta.4",
"version": "3.0.0-beta.5",
"contributors": [
"Craig Condon <craig.j.condon@gmail.com> (http://crcn.io)",
"Jared Allard <jaredallard@outlook.com>",
+1 -1
View File
@@ -14,7 +14,7 @@ export default async function(compiler: NexeCompiler, next: () => Promise<void>)
`def configure_v8(o):\n o['variables']['embed_script'] = r'${resolve(
cwd,
snapshot
)}'\n o['variables']['warmup_script'] = r'${resolve(warmup || snapshot)}'`
)}'\n o['variables']['warmup_script'] = r'${resolve(cwd, warmup || snapshot)}'`
)
return next()