Changeset 20505


Ignore:
Timestamp:
2009-09-04T12:14:35+12:00 (15 years ago)
Author:
ak19
Message:

Corrected error in batch script: in label portcon, it tried to do two actions in one step without using the ampersand sign, so it didn't work properly before.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/gsicontrol.bat

    r20435 r20505  
    199199
    200200:portcon
    201 if "%connect%" == "yes" set allowfrom="all" goto portcon2
    202 if "%connect%" == "y" set allowfrom="all" goto portcon2
     201if "%connect%" == "yes" set allowfrom="all"& goto portcon2
     202if "%connect%" == "y" set allowfrom="all"& goto portcon2
    203203set allowfrom="127.0.0.1"
    204204goto portcon2
     
    206206:portcon2
    207207if "%port%" == "" (
    208     echo Done
    209     goto exit
     208   echo Done
     209   goto exit
    210210)
    211211set _sed="bin\windows\sed.exe"
Note: See TracChangeset for help on using the changeset viewer.