aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2021-10-07 10:43:35 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2021-10-07 10:43:45 +0200
commit006b09e25c688667cd4fd5ebaeeebf06ec349914 (patch)
treee4baf5766f521adfb7a0d589e477509e0b2a5665
parent9176a9ed181fb5dee238fc2bb777895339357bad (diff)
downloadvendor_replicant-release-scripts-006b09e25c688667cd4fd5ebaeeebf06ec349914.tar.gz
vendor_replicant-release-scripts-006b09e25c688667cd4fd5ebaeeebf06ec349914.tar.bz2
vendor_replicant-release-scripts-006b09e25c688667cd4fd5ebaeeebf06ec349914.zip
releasevars.sh: convert remaining spaces to tabs
In this repository, in all the files, there are more tabs than spaces, and in releasevars.sh the spaces seem to have been used to avoid lines over 80 characters. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-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"