From c5c6bace995473ab3d7a6c9c7927614660a430cd Mon Sep 17 00:00:00 2001 From: "Nikita P. Shupeyko" Date: Thu, 28 Jun 2018 16:39:51 +0300 Subject: [PATCH] Remove LICENSE for non open source projects --- hooks/post_gen_project.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index 9118f6c9..b75ec3d9 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -32,7 +32,10 @@ DEBUG_VALUE = "debug" def remove_open_source_files(): - file_names = ["CONTRIBUTORS.txt"] + file_names = [ + "CONTRIBUTORS.txt", + "LICENSE", + ] for file_name in file_names: os.remove(file_name)