mirror of
https://github.com/localsend/localsend.git
synced 2026-04-19 06:30:04 -04:00
20 lines
650 B
PowerShell
20 lines
650 B
PowerShell
cd app
|
|
|
|
fvm flutter clean
|
|
fvm flutter pub get
|
|
fvm flutter build windows
|
|
|
|
Remove-Item "D:\inno" -Force -Recurse -ErrorAction SilentlyContinue
|
|
New-Item -ItemType Directory -Force -Path "D:\inno"
|
|
Copy-Item -Path "build\windows\runner\Release\*" -Destination "D:\inno" -Recurse
|
|
Copy-Item -Path "assets\packaging\logo.ico" -Destination "D:\inno"
|
|
|
|
cd ..
|
|
|
|
Copy-Item -Path "scripts\windows\x64\*" -Destination "D:\inno" -Recurse
|
|
Remove-Item "D:\inno-result" -Force -Recurse -ErrorAction SilentlyContinue
|
|
New-Item -ItemType Directory -Force -Path "D:\inno-result"
|
|
iscc .\scripts\compile_windows_exe-inno.iss
|
|
|
|
Write-Output 'Generated Windows exe installer!'
|