Add welcome page text to macOS pkg installer
Tells the user to allow the permission prompts macOS may show during install and first launch. License page remains absent; Destination Select was already stripped, leaving Introduction, Install, Summary.
This commit is contained in:
@@ -360,6 +360,8 @@ def build_velopack(version: str) -> Path:
|
||||
"--outputDir",
|
||||
str(releases_dir),
|
||||
]
|
||||
if sys.platform == "darwin":
|
||||
cmd += ["--instWelcome", str(_ASSETS_DIR / "macos-installer-welcome.txt")]
|
||||
print(f"Running: {' '.join(cmd)}")
|
||||
try:
|
||||
result = subprocess.run(cmd, cwd=_REPO_ROOT, capture_output=True, text=True)
|
||||
|
||||
Reference in New Issue
Block a user