diff --git a/.bin/Scripts/functions/setup.py b/.bin/Scripts/functions/setup.py index e793e17c..036f4d84 100644 --- a/.bin/Scripts/functions/setup.py +++ b/.bin/Scripts/functions/setup.py @@ -338,11 +338,13 @@ def install_ninite_bundle( main_selections.append('standard') else: main_selections.append('standard7') - cmd = r'{}\Installers\Extras\Bundles\{}.exe'.format( - global_vars['BaseDir'], - '-'.join(main_selections), - ) - popen_objects.append(popen_program([cmd])) + if main_selections: + # Only run if base and/or standard are enabled + cmd = r'{}\Installers\Extras\Bundles\{}.exe'.format( + global_vars['BaseDir'], + '-'.join(main_selections), + ) + popen_objects.append(popen_program([cmd])) # Extra selections extra_selections = {}