view contrib/make_flys_release/h2/createDatacage.sh @ 4989:f4d61ac84b76 dami

If we bother to check if the file is readable we might also bother to check if it's a file at all. Thanks to teichmann for noticing
author Andre Heinecke <aheinecke@intevation.de>
date Thu, 14 Feb 2013 10:54:02 +0100
parents 9d404069f361
children 3ba2917e49d3
line wrap: on
line source
#!/bin/bash

mkdir datacagedb

DIR=`dirname $0`
DIR=`readlink -f "$DIR"`

CLASSPATH=
for l in `find "$DIR" -name \*.jar -print`; do
   CLASSPATH=$CLASSPATH:$l
done

export CLASSPATH

java org.h2.tools.RunScript \
    -url jdbc:h2:`readlink -f datacagedb`/datacage \
    -script $DIR/datacage.sql

http://dive4elements.wald.intevation.org