1
Fork 0

rename variable

This commit is contained in:
Jake Howard 2016-07-29 23:06:50 +01:00
parent d5585c1a73
commit dfa4a76e5a
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ machine:
node: node:
version: 5.11.1 version: 5.11.1
environment: environment:
DEBUG: false BUILD_PRODUCTION: true
dependencies: dependencies:
pre: pre:

View file

@ -62,7 +62,7 @@ PLUGINS = [
"minify" "minify"
] ]
if "DEBUG" in os.environ: if "BUILD_PRODUCTION" in os.environ:
PLUGINS.append("minify") # only minify on production build PLUGINS.append("minify") # only minify on production build
SITEMAP = { SITEMAP = {