You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Sebastian.Nordgren #rnx #preflight 62985fe89907cbadbaa25855 - This is a follow on fix from 20451429, although that solved the problem of duplicate registered commands due to differing DotNet locations it did not solve a problem introduced in 20248689 caused by quoting the command argument. - If the path in the command element does get quoted due to containing a space in the file path then FileReference will fail to parse it as RemoveCustomToolsFromNode intended and the comparison between the Command element and the DotNet location would always fail. -- This meant that a newly published version of the tool would replace the old commands, but when published a second time would start to register duplicate commands. - The simple solution is to try and strip the quotes (if any) before creating the FileReference for comparison. [CL 20466696 by paul chipchase in ue5-main branch]