mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
Removed invalid SUCCESS message on link failure
This commit is contained in:
parent
ff96101806
commit
cbba8399ec
1 changed files with 1 additions and 1 deletions
|
@ -9761,7 +9761,7 @@ namespace IDE
|
||||||
|
|
||||||
if (buildCompletedCmd.mFailed)
|
if (buildCompletedCmd.mFailed)
|
||||||
OutputLineSmart("ERROR: BUILD FAILED. Total build time: {0:0.00}s", buildCompletedCmd.mStopwatch.ElapsedMilliseconds / 1000.0f);
|
OutputLineSmart("ERROR: BUILD FAILED. Total build time: {0:0.00}s", buildCompletedCmd.mStopwatch.ElapsedMilliseconds / 1000.0f);
|
||||||
if ((mVerbosity >= .Detailed) && (buildCompletedCmd.mStopwatch != null))
|
else if ((mVerbosity >= .Detailed) && (buildCompletedCmd.mStopwatch != null))
|
||||||
OutputLineSmart("SUCCESS: Build completed with no errors. Total build time: {0:0.00}s", buildCompletedCmd.mStopwatch.ElapsedMilliseconds / 1000.0f);
|
OutputLineSmart("SUCCESS: Build completed with no errors. Total build time: {0:0.00}s", buildCompletedCmd.mStopwatch.ElapsedMilliseconds / 1000.0f);
|
||||||
|
|
||||||
if (mDebugger?.mIsComptimeDebug == true)
|
if (mDebugger?.mIsComptimeDebug == true)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue