You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2006/01/27 00:02:29 UTC

svn commit: r372642 - /directory/trunks/apacheds/standalone/installers/plugin/src/main/java/org/apache/directory/server/standalone/installers/inno/InnoInstallerCommand.java

Author: akarasulu
Date: Thu Jan 26 15:02:28 2006
New Revision: 372642

URL: http://svn.apache.org/viewcvs?rev=372642&view=rev
Log:
make sure we exit without failing buid on non-windows platforms

Modified:
    directory/trunks/apacheds/standalone/installers/plugin/src/main/java/org/apache/directory/server/standalone/installers/inno/InnoInstallerCommand.java

Modified: directory/trunks/apacheds/standalone/installers/plugin/src/main/java/org/apache/directory/server/standalone/installers/inno/InnoInstallerCommand.java
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/standalone/installers/plugin/src/main/java/org/apache/directory/server/standalone/installers/inno/InnoInstallerCommand.java?rev=372642&r1=372641&r2=372642&view=diff
==============================================================================
--- directory/trunks/apacheds/standalone/installers/plugin/src/main/java/org/apache/directory/server/standalone/installers/inno/InnoInstallerCommand.java (original)
+++ directory/trunks/apacheds/standalone/installers/plugin/src/main/java/org/apache/directory/server/standalone/installers/inno/InnoInstallerCommand.java Thu Jan 26 15:02:28 2006
@@ -93,6 +93,8 @@
         if ( ! Os.isFamily( "windows" ) ) 
         {
             log.warn( "Inno target " + target.getId() + " cannot be built on a non-windows machine!" );
+            log.warn( "The build will not fail because of this acceptable situation." );
+            return;
         }
         
         if ( ! target.getInnoCompiler().exists() )