From d9b0d6f77f3e8976d5c1ca0ed7cbcdd267d9da21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Joda=20St=C3=B6=C3=9Fer?= Date: Thu, 13 Apr 2017 13:36:39 +0200 Subject: [PATCH] fix autoupdater not 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 build.sh rewrite, which previously set it during a build --- site.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site.mk b/site.mk index 23a713e..23e55a4 100755 --- a/site.mk +++ b/site.mk @@ -33,7 +33,7 @@ GLUON_SITE_PACKAGES := \ # Allow overriding the these variables from the command line GLUON_RELEASE ?= $(patsubst v%,%,$(shell git -C $(GLUON_SITEDIR) describe --tags --dirty=+)) -GLUON_BRANCH ?= stable +export GLUON_BRANCH ?= stable GLUON_PRIORITY ?= 0 GLUON_LANGS ?= en de GLUON_REGION ?= eu