diff --git a/remove_internal.py b/remove_internal.py index 3fcfb446e67f4920c47bbface39bf9de70ebc853..d62f5647bd1ffa4eb52304f7f1870a505f198a70 100755 --- a/remove_internal.py +++ b/remove_internal.py @@ -18,7 +18,7 @@ def copy_files(input_path, output_path): dst = os.path.join(output_path, file) if os.path.isdir(src) and (not file in remove_list): shutil.copytree(src, dst, dirs_exist_ok=True) - elif os.path.isfile(src) and (not file.startswith('@system')): + elif os.path.isfile(src): shutil.copy(src, dst)