Subversion Repository Public Repository

litesoft

Diff Revisions 362 vs 364 for /trunk/Java/ScarPlus/src/com/esotericsoftware/scar/ProjectParameters.java

Diff revisions: vs.
  @@ -619,7 +619,8 @@
619 619 {
620 620 for ( String zOption : pOptions )
621 621 {
622 - if ( dirExists( zOption ) )
622 + int at = zOption.indexOf( '|' );
623 + if ( dirExists( (at == -1) ? zOption : zOption.substring( 0, at ) ) )
623 624 {
624 625 mManager.put( pParameter.getName(), zOption );
625 626 return;