Remove LICENSE for non open source projects

This commit is contained in:
Nikita P. Shupeyko 2018-06-28 16:39:51 +03:00
parent ac61117b59
commit c5c6bace99

View File

@ -32,7 +32,10 @@ DEBUG_VALUE = "debug"
def remove_open_source_files(): def remove_open_source_files():
file_names = ["CONTRIBUTORS.txt"] file_names = [
"CONTRIBUTORS.txt",
"LICENSE",
]
for file_name in file_names: for file_name in file_names:
os.remove(file_name) os.remove(file_name)