aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xreleasevars.sh35
1 files changed, 20 insertions, 15 deletions
diff --git a/releasevars.sh b/releasevars.sh
index f2d33f2..8548b96 100755
--- a/releasevars.sh
+++ b/releasevars.sh
@@ -19,15 +19,18 @@
RELEASE=""
if [ -z "${RELEASE}" ] ; then
- echo "You need to define the RELEASE variable in the releasevars.sh script."
- echo "This needs to reflect the Replicant version you are releasing."
- echo
- echo "For example, if you are releasing Replicant 6.0 0004 RC2, you can use:"
- echo " RELEASE=\"6.0-0004-rc2\""
- echo
- echo "Or if you just want to release a build from the replicant-6.0 branch:"
- echo " RELEASE=\"6.0\""
- exit 1
+ echo "You need to define the"\
+ "RELEASE variable in the releasevars.sh script."
+ echo "This needs to reflect the Replicant version you are releasing."
+ echo
+ echo "For example," \
+ "if you are releasing Replicant 6.0 0004 RC2, you can use:"
+ echo " RELEASE=\"6.0-0004-rc2\""
+ echo
+ echo "Or if you just want to"\
+ "release a build from the replicant-6.0 branch:"
+ echo " RELEASE=\"6.0\""
+ exit 1
fi
RELEASE_DEVICES="\
@@ -69,12 +72,14 @@ RELEASE_IMAGES="\
RELEASE_KEY=""
if [ -z "${RELEASE_KEY}" ] ; then
- echo "You need to define the RELEASE_KEY variable in the releasevars.sh script."
- echo "This variable contains the gpg key that will sign the images you are releasing."
- echo
- echo "For example:"
- echo " RELEASE_KEY=\"FB31DBA3AB8DB76A4157329F7651568F80374459\""
- exit 1
+ echo "You need to"\
+ "define the RELEASE_KEY variable in the releasevars.sh script."
+ echo "This variable"\
+ "contains the gpg key that will sign the images you are releasing."
+ echo
+ echo "For example:"
+ echo " RELEASE_KEY=\"FB31DBA3AB8DB76A4157329F7651568F80374459\""
+ exit 1
fi
REPO="repo"