Allow specifiying the log directory

This commit is contained in:
Thomas Preud'homme 2010-05-17 17:35:35 +02:00
parent 9af26178ba
commit e49eaecf18
1 changed files with 6 additions and 1 deletions

View File

@ -321,6 +321,11 @@ main()
{
local -
if [ -n "$1" ]
then
cd "$1"
fi
for prod in $prodList ; do
case "$prod" in
matrice) argTypeProd=16 ;;
@ -372,4 +377,4 @@ main()
done
}
main
main "$@"