Subversion Repositories DevTools

Rev

Rev 7333 | Rev 7345 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7333 Rev 7341
Line 1733... Line 1733...
1733
 
1733
 
1734
                File buildDirectory = new File(wd, getProject().getProperty("abt_package_location"));
1734
                File buildDirectory = new File(wd, getProject().getProperty("abt_package_location"));
1735
 
1735
 
1736
                if ( buildDirectory.exists() )
1736
                if ( buildDirectory.exists() )
1737
                {
1737
                {
1738
                    // jats jats_vcsrelease -label pkgTag -root=rtag_id/timestamp -tag=timestamp -noprefix -delete=2
1738
                    // jats jats_vcsrelease -label pkgTag -root=rtag_id/timestamp -tag=timestamp -noprefix  [-extractfiles] -delete=2
1739
                    command.init("jats", "jats_vcsrelease" );
1739
                    command.init("jats", "jats_vcsrelease" );
1740
                    command.add( "-label=" + packageVcsTag );
1740
                    command.add( "-label=" + packageVcsTag );
1741
                    command.add( "-root=" + rtagId );
1741
                    command.add( "-root=" + rtagId );
1742
                    command.add( "-tag=" + daemon );
1742
                    command.add( "-tag=" + daemon );
1743
                    command.add( "-noprefix" );
1743
                    command.add( "-noprefix" );
-
 
1744
                    command.add(!master, "-extractfiles");
1744
                    command.add( "-delete=2" );
1745
                    command.add( "-delete=2" );
1745
                    //command.add( "-verbose=2" );
1746
                    //command.add( "-verbose=2" );
1746
 
1747
 
1747
                    runCommand( "Failure to remove source code extraction" );
1748
                    runCommand( "Failure to remove source code extraction" );
1748
                }
1749
                }