1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Fixed custom command rebuild issues after cleaning

This commit is contained in:
Brian Fiete 2021-07-19 10:50:31 -07:00
parent ce1dbd88ed
commit b662b2ac48

View file

@ -279,6 +279,12 @@ namespace IDE
project.mLastDidBuild = true; project.mLastDidBuild = true;
} }
else
{
var tagetCompletedCmd = new IDEApp.TargetCompletedCmd(project);
tagetCompletedCmd.mOnlyIfNotFailed = true;
gApp.mExecutionQueue.Add(tagetCompletedCmd);
}
return true; return true;
} }
@ -546,6 +552,12 @@ namespace IDE
project.mLastDidBuild = true; project.mLastDidBuild = true;
} }
} }
else
{
var tagetCompletedCmd = new IDEApp.TargetCompletedCmd(project);
tagetCompletedCmd.mOnlyIfNotFailed = true;
gApp.mExecutionQueue.Add(tagetCompletedCmd);
}
return true; return true;
} }
@ -646,6 +658,12 @@ namespace IDE
project.mLastDidBuild = true; project.mLastDidBuild = true;
} }
} }
else
{
var tagetCompletedCmd = new IDEApp.TargetCompletedCmd(project);
tagetCompletedCmd.mOnlyIfNotFailed = true;
gApp.mExecutionQueue.Add(tagetCompletedCmd);
}
return true; return true;
} }
@ -1155,6 +1173,12 @@ namespace IDE
project.mLastDidBuild = true; project.mLastDidBuild = true;
} }
} }
else
{
var tagetCompletedCmd = new IDEApp.TargetCompletedCmd(project);
tagetCompletedCmd.mOnlyIfNotFailed = true;
gApp.mExecutionQueue.Add(tagetCompletedCmd);
}
return true; return true;
} }
@ -1266,6 +1290,10 @@ namespace IDE
if (project.mGeneralOptions.mTargetType == .CustomBuild) if (project.mGeneralOptions.mTargetType == .CustomBuild)
{ {
var tagetCompletedCmd = new IDEApp.TargetCompletedCmd(project);
tagetCompletedCmd.mOnlyIfNotFailed = true;
gApp.mExecutionQueue.Add(tagetCompletedCmd);
return true; return true;
} }