Fix security bug

This commit is contained in:
leha-code 2022-03-14 09:41:42 -04:00
parent c908617c7e
commit f9be98ea6c
No known key found for this signature in database
GPG Key ID: 15227A6455DDF7EE
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ if __name__ == "__main__":
f"/home/{USER}/.planet-launcher/minecraft.AppImage", "wb"
) as out:
out.write(appimage.read())
os.chmod(f"/home/{USER}/.planet-launcher/minecraft.AppImage", 0o777)
os.chmod(f"/home/{USER}/.planet-launcher/minecraft.AppImage", 0o755)
window = Planet()
window.show()