Skip to content

Commit

Permalink
2.2.2
Browse files Browse the repository at this point in the history
Fixed stupid mistake.
  • Loading branch information
KostromDan committed Mar 15, 2024
1 parent 380f0dd commit 2cb83c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions MDGLogic/MergingThread.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,8 @@ def run(self) -> None:
logging.info(f'Started merging of {decompiled_mod}.')
for file in os.listdir(path_to_mod):
path_to_file = os.path.join(path_to_mod, file)
for skip_file in SKIP:
if file.startswith(skip_file):
continue
if len(list(filter(lambda skip_str: file.startswith(skip_str), SKIP))) > 0:
continue
if os.path.isfile(path_to_file):
if merge_resources:
shutil.copy(path_to_file, PathUtils.MERGED_MDK_RESOURCES_PATH)
Expand Down
3 changes: 2 additions & 1 deletion built_to_exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
from MDGUtil import PathUtils
from MDGUtil.FileUtils import remove_folder

VERSION = '2.2.1'
VERSION = '2.2.2'


def main():
remove_folder('build')
remove_folder('local')
remove_folder('dist')
remove_folder(PathUtils.RESULT_FOLDER_PATH)
remove_folder(PathUtils.TMP_FOLDER_PATH)
Expand Down

0 comments on commit 2cb83c5

Please sign in to comment.