Changeset 5025


Ignore:
Timestamp:
2003-07-25T14:28:33+12:00 (21 years ago)
Author:
mdewsnip
Message:

Now works under Windows 95/98.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/clean.bat

    r5005 r5025  
    33
    44::  -------- Clean up the Greenstone Librarian Interface directory --------
     5
     6:: This script must be run from within the directory in which it lives
     7if exist clean.bat goto cleanGLI
     8    echo This script must be run from the directory in which it resides.
     9    goto exit
     10
    511
    612:cleanGLI
     
    1016
    1117cd classes\org\greenstone\gatherer
    12 del *.class
    13 rmdir /S /Q cdm
    14 rmdir /S /Q checklist
    15 rmdir /S /Q collection
    16 rmdir /S /Q file
    17 rmdir /S /Q gui
    18 rmdir /S /Q help
    19 rmdir /S /Q mem
    20 rmdir /S /Q msm
    21 rmdir /S /Q sarm
    22 rmdir /S /Q shell
    23 rmdir /S /Q undo
    24 rmdir /S /Q util
    25 rmdir /S /Q valuetree
     18if exist "*.class" del "*.class"
     19if exist "cdm\*.class" del "cdm\*.class"
     20if exist "checklist\*.class" del "checklist\*.class"
     21if exist "collection\*.class" del "collection\*.class"
     22if exist "file\*.class" del "file\*.class"
     23if exist "gui\*.class" del "gui\*.class"
     24if exist "help\*.class" del "help\*.class"
     25if exist "mem\*.class" del "mem\*.class"
     26if exist "msm\*.class" del "msm\*.class"
     27if exist "sarm\*.class" del "sarm\*.class"
     28if exist "shell\*.class" del "shell\*.class"
     29if exist "undo\*.class" del "undo\*.class"
     30if exist "util\*.class" del "util\*.class"
     31if exist "valuetree\*.class" del "valuetree\*.class"
    2632cd ..\..\..\..
    2733
Note: See TracChangeset for help on using the changeset viewer.