From 82fd0bfb4f26b8af93bf1343e140fbb1b5655a04 Mon Sep 17 00:00:00 2001 From: Steve Streeting Date: Mon, 26 Jun 2023 11:27:12 +0100 Subject: [PATCH] No longer clean DLLs --- ue-get-latest.ps1 | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/ue-get-latest.ps1 b/ue-get-latest.ps1 index ae5c14d..870400d 100644 --- a/ue-get-latest.ps1 +++ b/ue-get-latest.ps1 @@ -69,16 +69,17 @@ try { } } - # Run cleanup tool - $cleanupargs = @() - if ($nocloseeditor) { - $cleanupargs += "-nocloseeditor" - } - if ($dryrun) { - $cleanupargs += "-dryrun" - } - # Use Invoke-Expression so we can use a string as options - Invoke-Expression "&'$PSScriptRoot/ue-cleanup.ps1' $cleanupargs" + # Actually don't clean up anymore, no longer needed + # # Run cleanup tool + # $cleanupargs = @() + # if ($nocloseeditor) { + # $cleanupargs += "-nocloseeditor" + # } + # if ($dryrun) { + # $cleanupargs += "-dryrun" + # } + # # Use Invoke-Expression so we can use a string as options + # Invoke-Expression "&'$PSScriptRoot/ue-cleanup.ps1' $cleanupargs" # Stopped using rebase because it's a PITA when it goes wrong Write-Output "Pulling latest from Git..."