From f13f8dfce8e0338cbd374a3e3fb6a82fe2c2c654 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Wed, 17 Apr 2019 11:46:03 +0800 Subject: [PATCH] Fix prepare-build with DEBEMAIL et al containing spaces --- prepare-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prepare-build.sh b/prepare-build.sh index ef0a467..8af69e8 100755 --- a/prepare-build.sh +++ b/prepare-build.sh @@ -11,8 +11,8 @@ then exit 1 fi -export DEBFULLNAME=${DEBFULLNAME:-FlightAware build automation} -export DEBEMAIL=${DEBEMAIL:-adsb-devs@flightaware.com} +export DEBFULLNAME="${DEBFULLNAME:-FlightAware build automation}" +export DEBEMAIL="${DEBEMAIL:-adsb-devs@flightaware.com}" TOP=`dirname $0` DIST=$1