diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-15 11:47:14 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-15 11:47:14 +0100 |
commit | 13c8f931b3edc89d8d67c816dac8965608648bd0 (patch) | |
tree | fc35f18235c840d9ffbcdd71a924e93d7093a19a | |
parent | 9abcf06dff2c4f0987433746ce5037eac711b31c (diff) | |
download | kyblo-13c8f931b3edc89d8d67c816dac8965608648bd0.tar.xz |
Move scripts to scripts/
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | scripts/build.py (renamed from build.py) | 2 | ||||
-rw-r--r-- | scripts/utils/__init__.py (renamed from utils/__init__.py) | 0 | ||||
-rw-r--r-- | scripts/utils/reST.py (renamed from utils/reST.py) | 0 |
4 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f478fa4 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +build: $(wildcard entries/*.rst) $(wildcard templates/*.html) entries.json + python scripts/build.py + +.PHONY: build diff --git a/build.py b/scripts/build.py index 60f4510..52f2775 100644 --- a/build.py +++ b/scripts/build.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import os.path import json diff --git a/utils/__init__.py b/scripts/utils/__init__.py index e69de29..e69de29 100644 --- a/utils/__init__.py +++ b/scripts/utils/__init__.py diff --git a/utils/reST.py b/scripts/utils/reST.py index d99758c..d99758c 100644 --- a/utils/reST.py +++ b/scripts/utils/reST.py |