fix autoupdater not being enabled by default

until Gluon 2017.1 the GLUON_BRANCH variable in the site.mk must explicitly be exported or it will have no effect
this issue exist since the rewrite of the build.sh, as the variable is not set by it anymore during a build
This commit is contained in:
Simon Joda Stößer 2017-04-13 13:36:39 +02:00
parent 9cb29e6f75
commit 01de590838
No known key found for this signature in database
GPG Key ID: A1524B1DCFF95CC8
2 changed files with 1 additions and 1 deletions

0
site.conf Normal file → Executable file
View File

View File

@ -33,7 +33,7 @@ GLUON_SITE_PACKAGES := \
# Allow overriding the these variables from the command line # Allow overriding the these variables from the command line
GLUON_RELEASE ?= $(patsubst v%,%,$(shell git -C $(GLUON_SITEDIR) describe --tags --dirty=+)) GLUON_RELEASE ?= $(patsubst v%,%,$(shell git -C $(GLUON_SITEDIR) describe --tags --dirty=+))
GLUON_BRANCH ?= stable export GLUON_BRANCH ?= stable
GLUON_PRIORITY ?= 0 GLUON_PRIORITY ?= 0
GLUON_LANGS ?= en de GLUON_LANGS ?= en de
GLUON_REGION ?= eu GLUON_REGION ?= eu