Subversion Repositories DevTools

Rev

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

Rev 1357 Rev 1360
Line 108... Line 108...
108
    $opt_mode = 'md5';
108
    $opt_mode = 'md5';
109
}
109
}
110
else
110
else
111
{
111
{
112
    $opt_mode = 'bc2';
112
    $opt_mode = 'bc2';
113
    Error ("This program mode only works under Windows")
113
    Error ("Use of BeyondCompare is limited to Windows", "Only the -check mode is available under Unix")
114
        if ( $UNIX );
114
        if ( $UNIX );
115
 
115
 
116
    #
116
    #
117
    #   Determine the path to BC2.EXE
117
    #   Determine the path to BC2.EXE
118
    #   It maynot be installed inthe default place
118
    #   It maynot be installed inthe default place
Line 232... Line 232...
232
    #
232
    #
233
    my @command = ( 'jats_vcsrelease',
233
    my @command = ( 'jats_vcsrelease',
234
                        '-extractfiles',
234
                        '-extractfiles',
235
                        '-root=.' ,
235
                        '-root=.' ,
236
                        '-noprefix',
236
                        '-noprefix',
237
                        '-devmode=vcsdiff',
237
                        '-devmode=escrow',
238
                        '-view', $tag ,
238
                        '-view', $tag ,
239
                        '-label', $vcstag,
239
                        '-label', $vcstag,
240
                   );
240
                   );
241
    push @view_commands, \@command;
241
    push @view_commands, \@command;
242
 
242