From 2836e9cfbc0673bad05b93b9da2eadbe85c6d0a1 Mon Sep 17 00:00:00 2001 From: Simon Rigney Date: Tue, 23 Sep 2025 15:51:24 +1000 Subject: [PATCH] Removed the text "Warning" for Win64 when symbol upload file is missing to match messaging above. --- plugin-dev/Sentry.uplugin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-dev/Sentry.uplugin b/plugin-dev/Sentry.uplugin index de38ef7e2..f1132de24 100644 --- a/plugin-dev/Sentry.uplugin +++ b/plugin-dev/Sentry.uplugin @@ -51,7 +51,7 @@ "set \"CRASHPAD_HANDLER_WIN=$(PluginDir)/Binaries/Win64/crashpad_handler.exe\"", "if \"$(TargetPlatform)\"==\"Win64\" (\n if not exist \"%CRASHPAD_HANDLER_WIN%\" (xcopy \"$(PluginDir)/Source/ThirdParty/Win64/Crashpad/bin/*\" \"$(PluginDir)/Binaries/Win64/\" /F /R /Y /I)\n)", "set \"SYM_UPLOAD_SCRIPT=$(PluginDir)/Scripts/upload-debug-symbols-win.bat\"", - "if exist \"%SYM_UPLOAD_SCRIPT%\" (call \"%SYM_UPLOAD_SCRIPT%\" $(TargetPlatform) $(TargetName) $(TargetType) $(TargetConfiguration) \"$(ProjectDir)\" \"$(PluginDir)\") else (\necho Warning: Sentry: Symbol upload script is missing. Skipping post build step.\n)", + "if exist \"%SYM_UPLOAD_SCRIPT%\" (call \"%SYM_UPLOAD_SCRIPT%\" $(TargetPlatform) $(TargetName) $(TargetType) $(TargetConfiguration) \"$(ProjectDir)\" \"$(PluginDir)\") else (\necho Sentry: Symbol upload script is missing. Skipping post build step.\n)", "endlocal" ] }