--pkg-fallback -> PKG_EXECPATH

This commit is contained in:
Igor Klopov 2017-10-31 16:57:14 +03:00
parent 67d20f7eb5
commit 686ae2c762

View File

@ -71,5 +71,6 @@ const script = `
export async function verify (local) {
await plusx(local);
await spawn(local, [ '--pkg-fallback', '-e', script ]);
await spawn(local, [ '-e', script ],
{ env: { PKG_EXECPATH: 'fallback' } });
}