Mercurial > dive4elements > framework
view artifact-database/bin/createArtifacts.sh @ 580:811b01e822da 3.2.x
Make compiler more verbose
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Tue, 17 Jan 2023 14:19:56 +0100 |
parents | 5f09f902dec2 |
children |
line wrap: on
line source
#!/bin/bash mkdir -p artifactsdb DIR=`dirname $0` DIR=`readlink -f "$DIR"` if [ $# != 1 ]; then SCHEMA="$DIR/../doc/schema-h2.sql" else SCHEMA="$1" fi URL="jdbc:h2:`readlink -f artifactsdb`/artifacts" mvn -e -Dexec.mainClass=org.h2.tools.RunScript exec:java \ -Dexec.args="-url $URL -script $SCHEMA"