No longer clean DLLs

This commit is contained in:
Steve Streeting 2023-06-26 11:27:12 +01:00
parent 40c0bc31bb
commit 82fd0bfb4f

View File

@ -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..."