All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.examples.start-h2 Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
#!/usr/bin/env bash

if [ -z "${LIQUIBASE_HOME}" ]; then
  #liquibase home is not set

  LIQUIBASE_PATH="$(which liquibase)"

  if [ -z "${LIQUIBASE_PATH}" ]; then
    echo "Must set LIQUIBASE_HOME environment variable, or have liquibase in your PATH"
    exit 1
  fi

  LIQUIBASE_HOME=$(dirname "$(which liquibase)")
fi

"${LIQUIBASE_HOME}/liquibase" init start-h2




© 2015 - 2024 Weber Informatics LLC | Privacy Policy