source: main/tags/2.60/gli/clean.sh@ 23892

Last change on this file since 23892 was 9463, checked in by mdewsnip, 19 years ago

Changed clean.sh to just remove everything in the classes/org/greenstone/gatherer directory, and also remove GLI.jar, and made makegli.sh run clean.sh to prevent problems with files not being recompiled properly. Windows changes to follow.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 812 bytes
Line 
1#!/bin/sh
2glilang=en
3
4## -------- Clean up the Greenstone Librarian Interface directory --------
5
6## ---- Remove class files ----
7if [ "$glilang" == "es" ]; then
8 echo "Eliminando los archivos de clase de la Interfaz de la Biblioteca "
9 echo "Digital Greenstone..."
10elif [ "$glilang" == "fr" ]; then
11 echo "Suppression des fichiers de classe de Greenstone Librarian Interface"
12elif [ "$glilang" == "ru" ]; then
13 echo "õÄÁÌÅÎÉÅ ÆÁÊÌÏ× ËÌÁÓÓÁ ÂÉÂÌÉÏÔÅÞÎÏÇÏ ÉÎÔÅÒÆÅÊÓÁ Greenstone"
14else
15 echo "Removing the Greenstone Librarian Interface class files..."
16fi
17
18rm -rf GLI.jar
19rm -rf classes/org/greenstone/gatherer/*
20
21if [ "$glilang" == "es" ]; then
22 echo "¡Hecho!"
23elif [ "$glilang" == "fr" ]; then
24 echo "Terminé!"
25elif [ "$glilang" == "ru" ]; then
26 echo "÷ÙÐÏÌÎÅÎÏ!"
27else
28 echo "Done!"
29fi
Note: See TracBrowser for help on using the repository browser.