17 lines
465 B
PowerShell
17 lines
465 B
PowerShell
param(
|
|
[Parameter(Mandatory=$true)][string]$Version,
|
|
[Parameter(Mandatory=$true)][string]$BinPath,
|
|
[string]$WV2Fixed = "",
|
|
[string]$SevenZip = "C:\Program Files\7-Zip\7z.exe",
|
|
[string]$SfxModule = "C:\Program Files\7-Zip\7z.sfx",
|
|
[string]$OutputDir = "."
|
|
)
|
|
|
|
& (Join-Path $PSScriptRoot "make_windows_sfx.ps1") `
|
|
-Version $Version `
|
|
-BinPath $BinPath `
|
|
-WV2Fixed $WV2Fixed `
|
|
-SevenZip $SevenZip `
|
|
-SfxModule $SfxModule `
|
|
-OutputDir $OutputDir
|