This commit is contained in:
XXXXRT666 2025-05-21 15:00:03 +03:00
parent af26bb61a6
commit 246ebc5b76

View File

@ -177,10 +177,13 @@ ExtractPath="."
"@
Set-Content -Path "config.txt" -Value $config -Encoding UTF8
$SfxModule = "C:\Program Files\7-Zip\7z.sfx"
# $SfxModule = "C:\Program Files\7-Zip\7z.sfx"
$SfxModule = "C:\Program Files\7-Zip\7zSD.sfx"
$SfxExePath = "$pkgName.exe"
Write-Host "[INFO] Creating self-extracting archive: $SfxExePath"
cmd /c "copy /b `"$SfxModule`" + config.txt + `"$7zPath`" `"$SfxExePath`""
$cmd = 'copy /b "{0}"+"config.txt"+"{1}" "{2}"' -f $SfxModule, $7zPath, $SfxExePath
Write-Host "[INFO] Running CMD: $cmd"
cmd /c $cmd
python -m pip install --upgrade pip
python -m pip install "modelscope" "huggingface_hub[hf_transfer]" --no-warn-script-location