diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-15 13:29:23 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-15 13:29:23 +0100 |
commit | 294fd044deff8e727a29847712a25149c1545063 (patch) | |
tree | 6f378c9b0ea86e2b3e2d3eaa8dc570c244002bbd /scripts | |
parent | 3cd56b234029cbebea177f32c6d531338334ec40 (diff) | |
download | kyblo-294fd044deff8e727a29847712a25149c1545063.tar.xz |
Rename entries.json to metadata.json
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build.py | 2 | ||||
-rwxr-xr-x | scripts/publish | 2 |
2 files changed, 2 insertions, 2 deletions
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\" }]" <entries.json | sponge entries.json + jq "[.[], { title: \"$title\", date: \"$date\", file: \"$file\" }]" <metadata.json | sponge metadata.json } main "$@" |