#!/usr/bin/env bash envType=$1 echo "Building ThinkFace $envType env" call mvn clean install -P $(envType) -DskipTests=true -f ../pom.xml echo "$envType build successful"