* Fix cygwin install script (medley.iss) to handle install directory with spaces in the directoryname. Also fix the uninstall.exe so that it actually deletes all of the installed directory instead of just portions of it. Finally update architecture specifications to match the latest InnoSetup conventions. * Add powershell script to prep installers/cygwin directory for local testing of cygwin installer. Does what is done online by github action to get the files to include in the installer.
9 lines
461 B
PowerShell
9 lines
461 B
PowerShell
#
|
|
# Prep the installer/cygwin directory to locally test the medley.iss installer
|
|
# Normally these downloads are done by the github workflow
|
|
#
|
|
# fgh 2024-11-15
|
|
#
|
|
wget https://cygwin.com/setup-x86_64.exe -OutFile setup-x86_64.exe
|
|
gh release download --repo interlisp/maiko --pattern *-cygwin.x86_64.tgz --output maiko-cygwin.x86_64.tgz --clobber
|
|
gh release download --repo interlisp/medley --pattern medley-full-linux-x86_64-*.tgz --output medley.tgz --clobber |