From b9b9c2591545a9c6564de90fbb8d9801382f6997 Mon Sep 17 00:00:00 2001 From: Steve Streeting Date: Mon, 28 Oct 2024 17:15:20 +0000 Subject: [PATCH] Fix mentions of build rather than cook --- ue-cook.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ue-cook.ps1 b/ue-cook.ps1 index 3bdadf3..824f51e 100644 --- a/ue-cook.ps1 +++ b/ue-cook.ps1 @@ -13,9 +13,9 @@ param ( . $PSScriptRoot\inc\filetools.ps1 function Print-Usage { - Write-Output "Steve's Unreal Build Tool" + Write-Output "Steve's Unreal Cook Tool" Write-Output "Usage:" - Write-Output " ue-build.ps1 [[-mode:]] [[-src:]sourcefolder] [Options]" + Write-Output " ue-cook.ps1 [[-src:]sourcefolder] [Options]" Write-Output " " Write-Output " -src : Source folder (current folder if omitted)" Write-Output " : (should be root of project)" @@ -100,7 +100,7 @@ try { $uinstall = Join-Path $uroot "UE_$uversion" } - # Test we can find Build.bat + # Test we can find RunUAT $ueEditorCmd = Get-UEEditorCmd $uversion $uinstall $runUAT = Join-Path $uinstall "Engine/Build/BatchFiles/RunUAT$batchSuffix"