From d0f4dd1f5287fa0bd0b39b3040bafa36b4173f7f Mon Sep 17 00:00:00 2001 From: Alan Mason <1923621+2Shirt@users.noreply.github.com> Date: Tue, 21 Nov 2017 13:25:44 -0800 Subject: [PATCH] Made SDIO Update optional --- .bin/Scripts/update_kit.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.bin/Scripts/update_kit.py b/.bin/Scripts/update_kit.py index 7491b6fd..4ce18a7e 100644 --- a/.bin/Scripts/update_kit.py +++ b/.bin/Scripts/update_kit.py @@ -18,6 +18,10 @@ if __name__ == '__main__': }} stay_awake() os.system('cls') + print_info('Starting {} Full Update\n'.format(KIT_NAME_FULL)) + + ## Prep ## + update_sdio = ask('Update SDI Origin?') ## Download ## print_success('Downloading tools') @@ -48,7 +52,8 @@ if __name__ == '__main__': try_and_print(message='Intel RST...', function=update_intel_rst, other_results=other_results, width=40) try_and_print(message='Intel SSD Toolbox...', function=update_intel_ssd_toolbox, other_results=other_results, width=40) try_and_print(message='Samsing Magician...', function=update_samsung_magician, other_results=other_results, width=40) - try_and_print(message='Snappy Driver Installer Origin...', function=update_sdi_origin, other_results=other_results, width=40) + if update_sdio: + try_and_print(message='Snappy Driver Installer Origin...', function=update_sdi_origin, other_results=other_results, width=40) # Installers print_info(' Installers')