From 294fd044deff8e727a29847712a25149c1545063 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Tue, 15 Nov 2016 13:29:23 +0100 Subject: Rename entries.json to metadata.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johannes Löthberg --- scripts/build.py | 2 +- scripts/publish | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/build.py b/scripts/build.py index 52f2775..03b83b3 100755 --- a/scripts/build.py +++ b/scripts/build.py @@ -72,7 +72,7 @@ if __name__ == '__main__': trim_blocks=True, lstrip_blocks=True) - with open('entries.json') as f: + with open('metadata.json') as f: entries = json.load(f) published, unpublished = split_entries(entries) diff --git a/scripts/publish b/scripts/publish index e76409e..b761265 100755 --- a/scripts/publish +++ b/scripts/publish @@ -11,7 +11,7 @@ main() { local date="$(date -Id)" mv "$file" entries/"$file" - jq "[.[], { title: \"$title\", date: \"$date\", file: \"$file\" }]"