diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-03-11 15:58:30 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-03-11 15:58:30 +0100 |
commit | 2b485906cfa6d2e0431b0fa0120e1c267074b4e8 (patch) | |
tree | 152720e5925a6f772fc8275c32bd3976f8943a25 /src/blogc-make/exec.c | |
parent | acf14b6fafd39e46ba343fd069bed205d7c35fb9 (diff) | |
download | blogc-2b485906cfa6d2e0431b0fa0120e1c267074b4e8.tar.gz blogc-2b485906cfa6d2e0431b0fa0120e1c267074b4e8.tar.bz2 blogc-2b485906cfa6d2e0431b0fa0120e1c267074b4e8.zip |
make: all builds are "production" by default, enable "dev" on cli.
this is more consistent with other similar tools, and enables us to add
something like a [copy:dev] section later, that will avoid copying dev
files to production builds.
Diffstat (limited to 'src/blogc-make/exec.c')
-rw-r--r-- | src/blogc-make/exec.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/blogc-make/exec.c b/src/blogc-make/exec.c index ca57e62..425f728 100644 --- a/src/blogc-make/exec.c +++ b/src/blogc-make/exec.c @@ -205,7 +205,7 @@ list_variables(const char *key, const char *value, bc_string_t *str) char* bm_exec_build_blogc_cmd(const char *blogc_bin, bm_settings_t *settings, bc_trie_t *variables, bool listing, const char *template, - const char *output, bool production, bool sources_stdin) + const char *output, bool dev, bool sources_stdin) { bc_string_t *rv = bc_string_new(); @@ -228,9 +228,8 @@ bm_exec_build_blogc_cmd(const char *blogc_bin, bm_settings_t *settings, bc_trie_foreach(variables, (bc_trie_foreach_func_t) list_variables, rv); - if (production) { - bc_string_append(rv, - " -D MAKE_ENV_PRODUCTION=1 -D MAKE_ENV='production'"); + if (dev) { + bc_string_append(rv, " -D MAKE_ENV_DEV=1 -D MAKE_ENV='dev'"); } if (listing) { @@ -273,7 +272,7 @@ bm_exec_blogc(bm_ctx_t *ctx, bc_trie_t *variables, bool listing, } char *cmd = bm_exec_build_blogc_cmd(ctx->blogc, ctx->settings, variables, - listing, template->path, output->path, ctx->production, input->len > 0); + listing, template->path, output->path, ctx->dev, input->len > 0); if (ctx->verbose) printf("%s\n", cmd); |