source: main/tags/2.41/gli/clean.bat@ 25339

Last change on this file since 25339 was 5824, checked in by mdewsnip, 20 years ago

Changed Windows batch files to have Windows line endings.

  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1@echo off
2
3
4:: -------- 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
11
12:cleanGLI
13:: ---- Remove class files ----
14echo.
15echo Removing the Greenstone Librarian Interface class files...
16
17cd classes\org\greenstone\gatherer
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"
32cd ..\..\..\..
33
34echo Done!
35
36:exit
37echo.
38pause
Note: See TracBrowser for help on using the repository browser.