Update Makefile

change image filename
This commit is contained in:
Bastian 2015-04-17 14:44:06 +02:00
parent 5fd2729570
commit 88cc801efb
1 changed files with 2 additions and 4 deletions

View File

@ -4,12 +4,10 @@ GLUON_GIT_REF := v2014.4
SECRET_KEY_FILE ?= ${HOME}/.gluon-secret-key
_GIT_DESCRIBE = $(shell git describe --tags 2>/dev/null)
ifneq (,${_GIT_DESCRIBE})
GLUON_RELEASE := ${_GIT_DESCRIBE}
GLUON_RELEASE := $(shell git describe --tags 2>/dev/null)
ifneq (,$(shell git describe --exact-match --tags 2>/dev/null))
GLUON_BRANCH := stable
else
GLUON_RELEASE ?= ffrgb-snapshot~$(shell date '+%Y%m%d')~$(shell git describe --always)
GLUON_BRANCH := experimental
endif