From 551bf314694faa80526078253ff9ee5f02229569 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fa=20Can=20Yan=C4=B1ko=C4=9Flu?= Date: Fri, 3 Apr 2020 21:20:26 +0300 Subject: [PATCH] Fix incorrect shipping executable name --- archive.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archive.go b/archive.go index 728bc13..6a86461 100644 --- a/archive.go +++ b/archive.go @@ -66,11 +66,11 @@ func GetEngineAssociation(path string) (string, error) { // GetBundleVerificationFile returns the file that should exist for this bundle as a basic integrity check // -// If the bundle contains "engine", then it is considered an engine bundle, and thus must include UE4Game. +// If the bundle contains "engine", then it is considered an engine bundle, and thus must include UE4Game-Win64-Shipping. // Else, it is considered an editor bundle, and must include UE4Editor. func GetBundleVerificationFile(bundle string) string { if strings.Contains(bundle, "engine") { - return "Engine/Binaries/Win64/UE4Game." + return "Engine/Binaries/Win64/UE4Game-Win64-Shipping." } else { return "Engine/Binaries/Win64/UE4Editor." }