view artifact-database/bin/createArtifacts.sh @ 585:0960b825516a 3.2.x tip

Ensure the build does not fail due to non-ASCII characters
author Tom Gottfried <tom@intevation.de>
date Wed, 15 Nov 2023 10:34:52 +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"

http://dive4elements.wald.intevation.org