#!/bin/bash set -ev cd $(dirname $(readlink -f $0)) # Download the specified version of utPLSQL. # UTPLSQL_VERSION="v3.0.0-beta" # UTPLSQL_FILE="utPLSQLv3.0.0.562-beta" # curl -L -O "https://github.com/utPLSQL/utPLSQL/releases/download/$UTPLSQL_VERSION/$UTPLSQL_FILE.tar.gz" # Download develop branch of utPLSQL. UTPLSQL_VERSION="develop" UTPLSQL_FILE="utPLSQL" git clone -b develop --single-branch https://github.com/utPLSQL/utPLSQL.git # tar -czf $UTPLSQL_FILE.tar.gz $UTPLSQL_FILE && rm -rf $UTPLSQL_FILE # Create a temporary install script. cat > install.sh.tmp <