mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
9 lines
221 B
Bash
9 lines
221 B
Bash
#!/usr/bin/env bash
|
|
# fail script immediately on any errors in external commands and print the lines
|
|
set -ev
|
|
|
|
export PROFILE=$1
|
|
|
|
cd rm-automation
|
|
mvn install -Pinstall-alfresco,${PROFILE} -Dinstaller.url=${INSTALLER_URL}
|