Bug fixes

This commit is contained in:
AaronDewes 2022-02-23 15:20:44 +00:00
parent 34fe6b7b47
commit b19baac138

View File

@ -316,7 +316,7 @@ def updateRepos():
# and overwrite the current app dir with the contents of the temporary dir/apps/app # and overwrite the current app dir with the contents of the temporary dir/apps/app
# Set this to ignoreApps. Normally, it keeps track of apps already installed from repos higher in the list, # Set this to ignoreApps. Normally, it keeps track of apps already installed from repos higher in the list,
# but apps specified in updateignore have the highest priority # but apps specified in updateignore have the highest priority
alreadyInstalled = ignoreApps alreadyInstalled = [s.strip() for s in ignoreApps]
# A map of apps to their source repo # A map of apps to their source repo
sourceMap = {} sourceMap = {}
for repo in repos: for repo in repos: