tdlight-java/scripts/core/deploy_release.sh

19 lines
287 B
Bash
Raw Normal View History

2020-12-29 23:38:50 +01:00
#!/bin/bash -e
# OTHER REQUIRED ENVIRONMENT VARIABLES:
# REVISION = <revision>
# Check variables correctness
if [ -z "${REVISION}" ]; then
echo "Missing parameter: REVISION"
exit 1
fi
cd "../../"
2020-12-29 23:38:50 +01:00
cd "bom"
2023-01-02 01:40:23 +01:00
mvn -B -Drevision="${REVISION}" clean deploy
cd "../"
2020-12-29 23:38:50 +01:00
echo "Done."
exit 0