Remove CompressPak from config structure as well

This commit is contained in:
Steve Streeting 2020-10-06 14:57:21 +01:00
parent db1b6e9381
commit 8328051da8

View File

@ -65,8 +65,6 @@ class PackageConfig {
[array]$MapsExcluded [array]$MapsExcluded
# Whether to combine assets into a pak file (default true) # Whether to combine assets into a pak file (default true)
[bool]$UsePak [bool]$UsePak
# Whether to compress the pak file (default false since deployments often compress & can detect diffs better)
[bool]$CompressPak
# List of PackageVariant entries # List of PackageVariant entries
[array]$Variants [array]$Variants
# Names of the default variant(s) to package / release if unspecified # Names of the default variant(s) to package / release if unspecified
@ -76,7 +74,6 @@ class PackageConfig {
# Construct from JSON object # Construct from JSON object
$this.CookAllMaps = $true $this.CookAllMaps = $true
$this.UsePak = $true $this.UsePak = $true
$this.CompressPak = $false
$this.Variants = @() $this.Variants = @()
# Override just properties that are set # Override just properties that are set