From 3887bc0073a0e07d520c18dd840e779870329c38 Mon Sep 17 00:00:00 2001 From: Adam Gausmann Date: Sun, 10 Mar 2019 08:30:17 +0000 Subject: [PATCH] Fix missing directory error in install --- install.py | 1 + 1 file changed, 1 insertion(+) diff --git a/install.py b/install.py index 8a345cb..8fa4412 100755 --- a/install.py +++ b/install.py @@ -65,6 +65,7 @@ def main(): host=host_config ) output_path = args.home / template_path.relative_to(templates_dir) + output_path.parent.mkdir(parents=True, exist_ok=True) with open(output_path, 'w+') as output_file: output_file.write(output)