Changeset 9889


Ignore:
Timestamp:
2005-05-16T20:38:13+12:00 (19 years ago)
Author:
davidb
Message:

exportcol.pl minus argument -nonetscape can't be last argument before
collections (or any other no-argument minus option for that matter) as
it gets confused and things the first collection is the argument to
the flag. Shifting further up the order avoids the problem.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/WriteCDImagePrompt.java

    r9888 r9889  
    257257    }
    258258    command_parts_list.add(Configuration.getScriptPath() + "exportcol.pl");
     259
     260    if (Gatherer.isGsdlRemote) {
     261        command_parts_list.add("-nonetscape");
     262    }
     263
    259264    command_parts_list.add("-gli");
    260265    command_parts_list.add("-language");
     
    266271    }
    267272
    268     if (Gatherer.isGsdlRemote) {
    269         command_parts_list.add("-nonetscape");
    270     }
    271273
    272274    for (int i = 0; i < num_collections; i++) {
Note: See TracChangeset for help on using the changeset viewer.