Fix permissions

This commit is contained in:
Aaron Dewes 2022-10-28 18:44:37 +02:00
parent 09ae3aee15
commit d0ccef691f

View File

@ -302,6 +302,8 @@ def updateRepos():
shutil.rmtree(tempDir)
with open(os.path.join(appsDir, "sourceMap.json"), "w") as f:
json.dump(sourceMap, f)
# Fix permissions
subprocess.call("chown -R 1000:1000 {}".format(appsDir), shell=True)
def getAvailableUpdates():