Replace cmd build script with PowerShell script
This commit is contained in:
parent
1c40a5e418
commit
e48d9039da
|
@ -1,4 +0,0 @@
|
|||
pyinstaller -i=icon.ico --windowed --onefile --hidden-import tornado.web --add-data icon.ico:files --add-data README.md:files --add-data GPL-3.0.txt:files --add-data CC-BY-SA-4.0.txt:files --name=navpoint.exe main.py
|
||||
"C:\Program Files (x86)\NSIS\makensis.exe" .\windows_installer.nsi
|
||||
move "dist\navpoint.exe" "dist\navpoint-windows-%PROCESSOR_ARCHITECTURE%-portable.exe"
|
||||
move "dist\NavpointInstaller.exe" "dist\navpoint-windows-%PROCESSOR_ARCHITECTURE%-installer.exe"
|
9
build-windows.ps1
Normal file
9
build-windows.ps1
Normal file
|
@ -0,0 +1,9 @@
|
|||
pyinstaller --icon "icon.ico" --windowed --onefile --hidden-import "tornado.web" --add-data "icon.ico:files" --add-data "README.md:files" --add-data "GPL-3.0.txt:files" --add-data "CC-BY-SA-4.0.txt:files" --name "navpoint.exe" "main.py"
|
||||
& "C:\Program Files (x86)\NSIS\makensis.exe" ".\windows_installer.nsi"
|
||||
|
||||
$distName = "navpoint-windows-$env:PROCESSOR_ARCHITECTURE"
|
||||
|
||||
Remove-Item -Path "dist\$distName-*"
|
||||
|
||||
Move-Item -Path "dist\navpoint.exe" -Destination "dist\$distName-portable.exe"
|
||||
Move-Item -Path "dist\NavpointInstaller.exe" -Destination "dist\$distName-installer.exe"
|
Loading…
Reference in New Issue
Block a user