From 1c7677d8052ba05579b24f6f6aaa7e9424b37ff9 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sun, 7 Apr 2019 19:39:30 -0700 Subject: [PATCH] Skip renaming Copy WizardKit.cmd * It isn't used anymore --- .bin/Scripts/update_kit.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.bin/Scripts/update_kit.py b/.bin/Scripts/update_kit.py index 13520d5c..5239974a 100644 --- a/.bin/Scripts/update_kit.py +++ b/.bin/Scripts/update_kit.py @@ -126,16 +126,6 @@ if __name__ == '__main__': section=section, name=name, options=options, other_results=other_results, width=40) - # Rename "Copy WizardKit.cmd" (if necessary) - source = r'{}\Scripts\Copy WizardKit.cmd'.format(global_vars['BinDir']) - dest = r'{}\Copy {}.cmd'.format(global_vars['BaseDir'], KIT_NAME_FULL) - if os.path.exists(source): - try: - shutil.move(source, dest) - except Exception: - print_error(' Failed to rename "{}.cmd" to "{}.cmd"'.format( - 'Copy WizardKit', KIT_NAME_FULL)) - # Done print_standard('\nDone.') pause("Press Enter to exit...")