mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Accept a VERSION parameter, default to SNAPSHOT
This commit is contained in:
parent
365ed4cc42
commit
639d3994ca
@ -1,6 +1,11 @@
|
|||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
export BISQ_RELEASE_NAME="bisq-cli-release"
|
VERSION="$1"
|
||||||
|
if [[ -z "$VERSION" ]]; then
|
||||||
|
VERSION="SNAPSHOT"
|
||||||
|
fi
|
||||||
|
|
||||||
|
export BISQ_RELEASE_NAME="bisq-cli-$VERSION"
|
||||||
export BISQ_RELEASE_ZIP_NAME="$BISQ_RELEASE_NAME.zip"
|
export BISQ_RELEASE_ZIP_NAME="$BISQ_RELEASE_NAME.zip"
|
||||||
|
|
||||||
export GRADLE_DIST_NAME="cli.tar"
|
export GRADLE_DIST_NAME="cli.tar"
|
||||||
|
@ -1,6 +1,11 @@
|
|||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
export BISQ_RELEASE_NAME="bisq-daemon-release"
|
VERSION="$1"
|
||||||
|
if [[ -z "$VERSION" ]]; then
|
||||||
|
VERSION="SNAPSHOT"
|
||||||
|
fi
|
||||||
|
|
||||||
|
export BISQ_RELEASE_NAME="bisq-daemon-$VERSION"
|
||||||
export BISQ_RELEASE_ZIP_NAME="$BISQ_RELEASE_NAME.zip"
|
export BISQ_RELEASE_ZIP_NAME="$BISQ_RELEASE_NAME.zip"
|
||||||
|
|
||||||
export GRADLE_DIST_NAME="daemon.tar"
|
export GRADLE_DIST_NAME="daemon.tar"
|
||||||
|
Loading…
Reference in New Issue
Block a user