diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-01-01 23:41:37 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-01-01 23:41:37 +0100 |
commit | 007f360e8eb3a6bf3d6770681198710fe1fe4d23 (patch) | |
tree | 402531e3acc10510669faad0bd80c890e45b1bbb /src | |
parent | b832feb3894d95a82e88da05bb9fa29c6da26211 (diff) | |
download | blogc-007f360e8eb3a6bf3d6770681198710fe1fe4d23.tar.gz blogc-007f360e8eb3a6bf3d6770681198710fe1fe4d23.tar.bz2 blogc-007f360e8eb3a6bf3d6770681198710fe1fe4d23.zip |
make: rename settings.ini to blogcfile
Diffstat (limited to 'src')
-rw-r--r-- | src/blogc-github-lambda/lambda_function.py | 6 | ||||
-rw-r--r-- | src/blogc-make/main.c | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/blogc-github-lambda/lambda_function.py b/src/blogc-github-lambda/lambda_function.py index b845285..9798055 100644 --- a/src/blogc-github-lambda/lambda_function.py +++ b/src/blogc-github-lambda/lambda_function.py @@ -148,11 +148,11 @@ def lambda_handler(event, context): env['OUTPUT_DIR'] = '_build_lambda' rootdir = get_tarball(payload['repository']['full_name']) - settings_file = os.path.join(rootdir, 'settings.ini') + blogcfile = os.path.join(rootdir, 'blogcfile') - if os.path.isfile(settings_file): + if os.path.isfile(blogcfile): # deploy using blogc-make - args = [os.path.join(cwd, 'blogc'), '-m', '-f', settings_file, + args = [os.path.join(cwd, 'blogc'), '-m', '-f', blogcfile, 'all'] if debug: args.append('-V') diff --git a/src/blogc-make/main.c b/src/blogc-make/main.c index bc8c926..6f5d040 100644 --- a/src/blogc-make/main.c +++ b/src/blogc-make/main.c @@ -36,7 +36,7 @@ print_help(void) " -h show this help message and exit\n" " -v show version and exit\n" " -V be verbose when executing commands\n" - " -f FILE settings file (default: settings.ini)\n"); + " -f FILE read FILE as blogcfile\n"); bm_rule_print_help(); } @@ -62,7 +62,7 @@ main(int argc, char **argv) bc_slist_t *rules = NULL; bool verbose = false; - char *settings_file = NULL; + char *blogcfile = NULL; bm_ctx_t *ctx = NULL; for (unsigned int i = 1; i < argc; i++) { @@ -79,9 +79,9 @@ main(int argc, char **argv) break; case 'f': if (argv[i][2] != '\0') - settings_file = bc_strdup(argv[i] + 2); + blogcfile = bc_strdup(argv[i] + 2); else if (i + 1 < argc) - settings_file = bc_strdup(argv[++i]); + blogcfile = bc_strdup(argv[++i]); break; #ifdef MAKE_EMBEDDED case 'm': @@ -105,7 +105,7 @@ main(int argc, char **argv) rules = bc_slist_append(rules, bc_strdup("all")); } - ctx = bm_ctx_new(settings_file ? settings_file : "settings.ini", &err); + ctx = bm_ctx_new(blogcfile ? blogcfile : "blogcfile", &err); if (err != NULL) { bc_error_print(err, "blogc-make"); rv = 3; @@ -117,7 +117,7 @@ main(int argc, char **argv) cleanup: bc_slist_free_full(rules, free); - free(settings_file); + free(blogcfile); bm_ctx_free(ctx); bc_error_free(err); |