diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-15 14:13:29 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-15 14:13:29 +0100 |
commit | 554a94f8fd5815b165847af586f9c99ad7981485 (patch) | |
tree | 1b09cea640384d4f054e6252bf4f6d79bdbd5d2c | |
parent | 4edc709161fdc9fe47caeb23143c0f672f511297 (diff) | |
download | kyblo-554a94f8fd5815b165847af586f9c99ad7981485.tar.xz |
build: Prepare for tags by making build_archive a bit more generic
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rwxr-xr-x | scripts/build.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build.py b/scripts/build.py index 4533513..e029052 100755 --- a/scripts/build.py +++ b/scripts/build.py @@ -24,10 +24,10 @@ def build_entry(jenv, fname, entry, older=None, newer=None): f.write(rendered) -def build_archive(jenv, entries): +def build_archive(jenv, filename, entries): archive_template = jenv.get_template('archive.html') rendered = archive_template.render(entries=entries) - with open('out/archive.html', 'w+') as f: + with open('out/{}.html'.format(filename), 'w+') as f: f.write(rendered) @@ -70,4 +70,4 @@ if __name__ == '__main__': build_entry(jenv, 'index', published[-1], older=published[-2:-1]) - build_archive(jenv, published) + build_archive(jenv, 'archive', published) |