1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00

Fixed stuck custom commands

This commit is contained in:
Brian Fiete 2020-05-06 17:01:26 -07:00
parent 657e758ec1
commit 585b856ff3

View file

@ -310,7 +310,8 @@ namespace IDE
bool matched = false;
if (var targetCompleteCmd = gApp.mExecutionQueue[0] as IDEApp.TargetCompletedCmd)
{
if (targetCompleteCmd.mProject.mProjectName == projectName)
if ((targetCompleteCmd.mProject.mProjectName == projectName) &&
(!targetCompleteCmd.mIsReady))
{
targetCompleteCmd.mIsReady = true;
matched = true;