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:
parent
657e758ec1
commit
585b856ff3
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue