10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-26 15:12:14 +02:00

Don't remove python executable when make clean

This commit is contained in:
Thomas Applencourt 2016-02-15 08:15:43 +01:00
parent acb8c1a225
commit 5bad973ba6

View File

@ -40,7 +40,7 @@ def is_plugin(path_module_rel):
def is_exe(fpath):
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
return os.path.isfile(fpath) and os.access(fpath, os.X_OK) and not fpath.endswith(".py")
def get_dict_child(l_root_abs=None):