Changeset 22491


Ignore:
Timestamp:
2010-07-23T11:12:48+12:00 (14 years ago)
Author:
sjm84
Message:

Fixed a mistake in the wrapper code that was causing the Windows installer to always use the --extract option

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/release-kits/shared/windows/wrapper/wrapper.cpp

    r22406 r22491  
    266266    string command = lpCmdLine;
    267267
    268     if(command.compare("-extract") || command.compare("--extract") || command.compare("-x")){
     268    if((command.compare("-extract") == 0) || (command.compare("--extract") == 0) || (command.compare("-x") == 0)){
    269269        printf("----------------------------\n");
    270270        printf("Extracting java installer...\n");
Note: See TracChangeset for help on using the changeset viewer.