Skip to content

Commit

Permalink
now installs main app after the dependendecies
Browse files Browse the repository at this point in the history
  • Loading branch information
mjishnu committed Nov 5, 2022
1 parent fe3f44c commit b83a732
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion utls.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@ def latest_version(lst):
arch = dict_data[file_name][2]
if arch == "neutral":
arch = os_arc()
final_data.append(file_name) #adding the main file to the final list
for i in file_name_list:
del dict_data[i] #removing the main files from the list

Expand Down Expand Up @@ -304,6 +303,9 @@ def latest_version(lst):

for key, value in repeated_name_dict.items():
final_data.append(final_data_get[(key,value)])

if file_name_list:
final_data.append(file_name) #adding the main file to the final list at the end so installed at the end

# parsing end ----------------------------------

Expand Down

0 comments on commit b83a732

Please sign in to comment.