Changeset 15025


Ignore:
Timestamp:
2008-02-29T10:38:58+13:00 (16 years ago)
Author:
oranfry
Message:

use shared launch4j instead

Location:
release-kits/wirk3
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • release-kits/wirk3/ant-scripts/create-launcher.xml

    r15023 r15025  
    3232        <if><bool><istrue value="${execute}"/></bool>
    3333
    34             <echo>compile the launcher</echo>
     34            <echo>Compiling the launcher</echo>
    3535            <!--<exec executable="cmd " dir="${basedir}/launcher/launcher.xml">
    3636                <arg line="/C ${wirk3.home}/bin/launch4j/launch4j.exe launcher.xml"/>
     
    4141        </if>
    4242    </target>
     43
    4344    <target name="clean-up-after-launcher-creation">
    4445        <if><bool><istrue value="${execute}"/></bool>
  • release-kits/wirk3/bin

    • Property svn:externals
      •  

        old new  
        11apache-ant-1.6.5 http://svn.greenstone.org/release-kits/shared/apache-ant-1.6.5
        22ant-installer http://svn.greenstone.org/release-kits/shared/ant-installer
        3 
         3launch4j http://svn.greenstone.org/release-kits/shared/launch4j
  • release-kits/wirk3/wrapper/wrapper.cpp

    r15023 r15025  
    8686       
    8787        }
    88         system("del greenstone3.tmp\\@java.installer@");
     88        system("if EXISTS greenstone3.tmp\\@java.installer@ del greenstone3.tmp\\@java.installer@");
     89       
    8990    }
    90        
     91   
    9192    //change back to the original directory and clean up the temp directory
    9293    SetCurrentDirectory("..");
    93     system("del greenstone3.tmp\\greenstone3.jar");
    94     system("del greenstone3.tmp\\launch-installer.exe");
    95     system("del greenstone3.tmp\\ant.install.log");
     94    system("if EXISTS greenstone3.tmp\\greenstone3.jar del greenstone3.tmp\\greenstone3.jar");
     95    system("if EXISTS greenstone3.tmp\\launch-installer.exe del greenstone3.tmp\\launch-installer.exe");
     96    system("if EXISTS greenstone3.tmp\\ant.install.log del greenstone3.tmp\\ant.install.log");
    9697    system("rmdir greenstone3.tmp");
    9798   
Note: See TracChangeset for help on using the changeset viewer.