echo out what distro we are building for

This commit is contained in:
Isaac Connor 2017-04-26 16:49:13 -04:00
parent 8bc8a17554
commit 7d3dc84c12
1 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,8 @@ fi;
if [ "$DISTRO" == "" ]; then if [ "$DISTRO" == "" ]; then
DISTRO=`lsb_release -a 2>/dev/null | grep Codename | awk '{print $2}'`; DISTRO=`lsb_release -a 2>/dev/null | grep Codename | awk '{print $2}'`;
echo "Defaulting to $DISTRO for distribution"; echo "Defaulting to $DISTRO for distribution";
else
echo "Building for $DISTRO";
fi; fi;
# Release is a special mode... it uploads to the release ppa and cannot have a snapshot # Release is a special mode... it uploads to the release ppa and cannot have a snapshot