Fix update in the setup script for other actions than all.

This commit is contained in:
Relintai 2019-11-25 12:11:41 +01:00
parent 865d97018e
commit eebf28b8ef

View File

@ -209,12 +209,18 @@ elif action == 'update' or action == 'u':
update_all() update_all()
elif target == 'engine': elif target == 'engine':
update_engine() update_engine()
save_target_commits_array()
elif target == 'modules': elif target == 'modules':
update_modules() update_modules()
save_target_commits_array()
elif target == 'all_addons': elif target == 'all_addons':
update_addons() update_addons()
update_addons_third_party_addons() update_addons_third_party_addons()
save_target_commits_array()
elif target == 'addons': elif target == 'addons':
update_addons() update_addons()
save_target_commits_array()
elif target == 'third_party_addons': elif target == 'third_party_addons':
update_addons_third_party_addons() update_addons_third_party_addons()
save_target_commits_array()