Files
focus_annotator/create_windows_installer.sh
Hannes Kuchelmeister ba2aa11e06 Comment out remove package in windows installer creation
This causes windows build errors and should not be necessary for the CI.
2023-02-09 10:37:32 +01:00

11 lines
290 B
Bash
Executable File

unzip -o package.zip
docker rm setup
docker container create --name setup amake/innosetup setup.iss
docker cp ./package setup:/work/
docker cp setup.iss setup:/work/
docker cp LICENSE.md setup:/work/
docker start -i -a setup
docker cp setup:/work/Output/. .
docker rm setup
# rm -r package