enable some disabled steps in Windows build script

This simplifies preparing test Windows-only installers.
This commit is contained in:
Jesse Plamondon-Willard 2022-04-29 22:46:37 -04:00
parent d7d8cdaa5a
commit a340c8b8ce
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
1 changed files with 9 additions and 11 deletions

View File

@ -184,14 +184,13 @@ foreach ($folder in $folders) {
# disable developer mode in main package # disable developer mode in main package
In-Place-Regex -Path "$packagePath/internal/$folder/bundle/smapi-internal/config.json" -Search "`"DeveloperMode`": true" -Replace "`"DeveloperMode`": false" In-Place-Regex -Path "$packagePath/internal/$folder/bundle/smapi-internal/config.json" -Search "`"DeveloperMode`": true" -Replace "`"DeveloperMode`": false"
# DISABLED: will be handled by Linux script
# convert bundle folder into final 'install.dat' files # convert bundle folder into final 'install.dat' files
#foreach ($path in @("$packagePath/internal/$folder", "$packageDevPath/internal/$folder")) foreach ($path in @("$packagePath/internal/$folder", "$packageDevPath/internal/$folder"))
#{ {
# Compress-Archive -Path "$path/bundle/*" -CompressionLevel Optimal -DestinationPath "$path/install.zip" Compress-Archive -Path "$path/bundle/*" -CompressionLevel Optimal -DestinationPath "$path/install.zip"
# mv "$path/install.zip" "$path/install.dat" mv "$path/install.zip" "$path/install.dat"
# rm -Recurse -Force "$path/bundle" rm -Recurse -Force "$path/bundle"
#} }
} }
@ -208,10 +207,9 @@ if (!$version) {
mv "$packagePath" "bin/SMAPI $version installer" mv "$packagePath" "bin/SMAPI $version installer"
mv "$packageDevPath" "bin/SMAPI $version installer for developers" mv "$packageDevPath" "bin/SMAPI $version installer for developers"
# DISABLED: will be handled by Linux script # package files
## package files Compress-Archive -Path "bin/SMAPI $version installer" -DestinationPath "bin/SMAPI $version installer.zip" -CompressionLevel Optimal
#Compress-Archive -Path "bin/SMAPI $version installer" -DestinationPath "bin/SMAPI $version installer.zip" -CompressionLevel Optimal Compress-Archive -Path "bin/SMAPI $version installer for developers" -DestinationPath "bin/SMAPI $version installer for developers.zip" -CompressionLevel Optimal
#Compress-Archive -Path "bin/SMAPI $version installer for developers" -DestinationPath "bin/SMAPI $version installer for developers.zip" -CompressionLevel Optimal
echo "" echo ""
echo "Done! See docs/technical/smapi.md to create the release zips." echo "Done! See docs/technical/smapi.md to create the release zips."