diff --git a/ue4-package.ps1 b/ue4-package.ps1 index 2241086..39a3e7a 100644 --- a/ue4-package.ps1 +++ b/ue4-package.ps1 @@ -1,3 +1,7 @@ +# Packaging helper +# Bumps versions, builds, cooks, packages variants +# Put packageconfig.json in your project folder to configure +# See packageconfig_template.json [CmdletBinding()] # Fail on unknown args param ( [string]$src, @@ -181,7 +185,6 @@ try { $editorprojname = [System.IO.Path]::GetFileNameWithoutExtension($projfile) Close-UE-Editor $editorprojname $dryrun - $ueEditorCmd = Join-Path $ueinstall "Engine/Binaries/Win64/UE4Editor-Cmd$exeSuffix" $runUAT = Join-Path $ueinstall "Engine/Build/BatchFiles/RunUAT$batchSuffix" @@ -190,7 +193,6 @@ try { $outDir = Join-Path $config.OutputDir "$versionNumber/$($variant.Name)" - $argList = [System.Collections.ArrayList]@() $argList.Add("-ScriptsForProject=`"$projfile`"") > $null $argList.Add("BuildCookRun") > $null @@ -234,6 +236,4 @@ catch { } - - Write-Output "~-~-~ UE4 Packaging Helper Completed OK ~-~-~"