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()
elif target == 'engine':
update_engine()
save_target_commits_array()
elif target == 'modules':
update_modules()
save_target_commits_array()
elif target == 'all_addons':
update_addons()
update_addons_third_party_addons()
save_target_commits_array()
elif target == 'addons':
update_addons()
save_target_commits_array()
elif target == 'third_party_addons':
update_addons_third_party_addons()
save_target_commits_array()