Give mesh images an indicative filename

This commit is contained in:
Bob Mottram 2016-05-28 17:52:13 +01:00
parent 55a2bd2899
commit 982192d679
1 changed files with 128 additions and 124 deletions

View File

@ -331,11 +331,15 @@ chown -R $CURR_USER:$CURR_USER $TEMPBUILD_DIR
cd $TEMPBUILD_DIR
if [[ $MINIMAL_INSTALL == "yes" ]]; then
IMAGE_NAME='min'
IMAGE_NAME=$'min'
fi
if [[ $ONION_ONLY != "no" ]]; then
IMAGE_NAME='onion'
IMAGE_NAME=$'onion'
fi
if [[ $VARIANT == 'mesh' ]]; then
IMAGE_NAME=$'mesh'
fi
cd $TEMPBUILD_DIR