From 007f360e8eb3a6bf3d6770681198710fe1fe4d23 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Sun, 1 Jan 2017 23:41:37 +0100 Subject: make: rename settings.ini to blogcfile --- src/blogc-github-lambda/lambda_function.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/blogc-github-lambda') 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') -- cgit v1.2.3-18-g5258