Subversion Repository Public Repository

litesoft

Diff Revisions 611 vs 612 for /trunk/Java/ScarPlus/src/com/esotericsoftware/scar/Project.java

Diff revisions: vs.
  @@ -528,7 +528,17 @@
528 528 }
529 529 mBuilt = true;
530 530 boolean zAnythingBuilt = false;
531 - if ( !buildDependencies() && !needToBuild() )
531 + boolean zBuildIt;
532 + try
533 + {
534 + zBuildIt = !buildDependencies() && !needToBuild();
535 + }
536 + catch ( RuntimeException e )
537 + {
538 + progress( "Build: " + this );
539 + throw e;
540 + }
541 + if ( zBuildIt )
532 542 {
533 543 progress( "Build: " + this + " NOT Needed!" );
534 544 }