From 8ccdd30c4561eff4fd8cef6365ee868d13a5bafd Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Sun, 23 Aug 2020 19:26:45 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=AC=20Logs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index dfcbfc28..8f250ec2 100644 --- a/build.py +++ b/build.py @@ -1,4 +1,5 @@ import json + from clickgen import build_cursor_theme from config import configs, sizes, delay, temp_folder @@ -6,7 +7,6 @@ from helper import init_build, pack_it def build(config) -> None: - init_build() build_cursor_theme( config['name'], @@ -21,10 +21,13 @@ def build(config) -> None: if __name__ == "__main__": + init_build() + # read hotspots file with open('./hotspots.json', 'r') as hotspot_file: hotspots = json.loads(hotspot_file.read()) # building themes for config in configs: + print('🌈 Building %s Theme ...' % config['name']) build(config)