source: trunk/gli/clean.bat@ 6747

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

Now with French strings!

  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1@echo off
2set GLILANG=en
3
4
5:: -------- Clean up the Greenstone Librarian Interface directory --------
6
7:: This script must be run from within the directory in which it lives
8if exist clean.bat goto cleanGLI
9 if "%GLILANG%" == "en" echo This script must be run from the directory in which it resides.
10 if "%GLILANG%" == "fr" echo Ce script doit ˆtre ex‚cut‚ …
11 partir du r‚pertoire dans lequel il se trouve.
12 goto exit
13
14
15:cleanGLI
16:: ---- Remove class files ----
17echo.
18if "%GLILANG%" == "en" echo Removing the Greenstone Librarian Interface class files...
19if "%GLILANG%" == "fr" echo Suppression des fichiers de classe de Greenstone Librarian Interface
20
21cd classes\org\greenstone\gatherer
22if exist "*.class" del "*.class"
23if exist "cdm\*.class" del "cdm\*.class"
24if exist "checklist\*.class" del "checklist\*.class"
25if exist "collection\*.class" del "collection\*.class"
26if exist "file\*.class" del "file\*.class"
27if exist "gui\*.class" del "gui\*.class"
28if exist "help\*.class" del "help\*.class"
29if exist "mem\*.class" del "mem\*.class"
30if exist "msm\*.class" del "msm\*.class"
31if exist "sarm\*.class" del "sarm\*.class"
32if exist "shell\*.class" del "shell\*.class"
33if exist "undo\*.class" del "undo\*.class"
34if exist "util\*.class" del "util\*.class"
35if exist "valuetree\*.class" del "valuetree\*.class"
36cd ..\..\..\..
37
38if "%GLILANG%" == "en" echo Done!
39if "%GLILANG%" == "fr" echo Termin‚!
40
41:exit
42echo.
43pause
Note: See TracBrowser for help on using the repository browser.