You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
269 B
14 lines
269 B
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
cd "$(dirname "$0")"
|
||
|
|
||
|
if [[ -z "$COMPOSE_CUSTOM_VERSION" ]]; then
|
||
|
echo "Must provide COMPOSE_CUSTOM_VERSION in environment" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
2 years ago
|
pushd ../../html
|
||
2 years ago
|
./gradlew publishToMavenLocal -Pcompose.version="$COMPOSE_CUSTOM_VERSION" || exit 1
|
||
3 years ago
|
popd
|
||
|
|