b27c736866
Fix #64: null updates sent to the updates handler Fix gradle import issue (#61) by rewriting the maven dependency structure, and adding a BOM to being able to keep the natives version in sync with tdlight-java version Fix #63 by adding the required dependencies for windows, linux and macOS in the README.md
19 lines
287 B
Bash
Executable File
19 lines
287 B
Bash
Executable File
#!/bin/bash -e
|
|
# OTHER REQUIRED ENVIRONMENT VARIABLES:
|
|
# REVISION = <revision>
|
|
|
|
# Check variables correctness
|
|
if [ -z "${REVISION}" ]; then
|
|
echo "Missing parameter: REVISION"
|
|
exit 1
|
|
fi
|
|
|
|
cd "../../"
|
|
|
|
cd "bom"
|
|
mvn -B -Drevision="${REVISION}" clean deploy
|
|
cd "../"
|
|
|
|
echo "Done."
|
|
exit 0
|