From a2a39ad02f9aaa83b2660e879f61e008c7219a81 Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Mon, 4 Jul 2022 16:26:38 -0300 Subject: [PATCH] docs: add missing PORTABLE_EXECUTABLE_FILE env var (#6981) --- .changeset/silly-moose-brush.md | 5 +++++ docs/configuration/nsis.md | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changeset/silly-moose-brush.md diff --git a/.changeset/silly-moose-brush.md b/.changeset/silly-moose-brush.md new file mode 100644 index 00000000000..f6dcbae016c --- /dev/null +++ b/.changeset/silly-moose-brush.md @@ -0,0 +1,5 @@ +--- + +--- + +docs: add missing PORTABLE_EXECUTABLE_FILE diff --git a/docs/configuration/nsis.md b/docs/configuration/nsis.md index fa7b40e52a3..e1a8b159743 100644 --- a/docs/configuration/nsis.md +++ b/docs/configuration/nsis.md @@ -107,7 +107,8 @@ To build portable app, set target to `portable` (or pass `--win portable`). For portable app, following environment variables are available: -* `PORTABLE_EXECUTABLE_DIR` - dir where portable executable located. +* `PORTABLE_EXECUTABLE_FILE` - path to the portable executable. +* `PORTABLE_EXECUTABLE_DIR` - directory where the portable executable is located. * `PORTABLE_EXECUTABLE_APP_FILENAME` - sanitized app name to use in [file paths](https://github.com/electron-userland/electron-builder/issues/3186#issue-345489962). ## Common Questions