mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 20:21:57 +00:00
possibly fix zip permissions
This commit is contained in:
+6
-2
@@ -1,9 +1,13 @@
|
|||||||
|
# Change PyInstaller files permissions
|
||||||
|
import sys
|
||||||
|
from subprocess import call
|
||||||
|
if "_MEIPASS" in sys:
|
||||||
|
call(['chmod', '-R', '755', sys._MEIPASS])
|
||||||
# Full imports
|
# Full imports
|
||||||
from asyncio import get_event_loop, sleep
|
from asyncio import get_event_loop, sleep
|
||||||
from json import dumps, loads
|
from json import dumps, loads
|
||||||
from logging import DEBUG, INFO, basicConfig, getLogger
|
from logging import DEBUG, INFO, basicConfig, getLogger
|
||||||
from os import getenv, path
|
from os import getenv, chmod
|
||||||
from subprocess import call
|
|
||||||
from traceback import format_exc
|
from traceback import format_exc
|
||||||
|
|
||||||
import aiohttp_cors
|
import aiohttp_cors
|
||||||
|
|||||||
@@ -113,7 +113,10 @@ const PluginCard: FC<PluginCardProps> = ({ plugin }) => {
|
|||||||
}}
|
}}
|
||||||
className="deckyStoreCardInfo"
|
className="deckyStoreCardInfo"
|
||||||
>
|
>
|
||||||
<p className={joinClassNames(staticClasses.PanelSectionRow)} style={{ marginTop: '0px', marginLeft: '16px'}}>
|
<p
|
||||||
|
className={joinClassNames(staticClasses.PanelSectionRow)}
|
||||||
|
style={{ marginTop: '0px', marginLeft: '16px' }}
|
||||||
|
>
|
||||||
<span style={{ paddingLeft: '0px' }}>Author: {plugin.author}</span>
|
<span style={{ paddingLeft: '0px' }}>Author: {plugin.author}</span>
|
||||||
</p>
|
</p>
|
||||||
<p
|
<p
|
||||||
@@ -122,7 +125,7 @@ const PluginCard: FC<PluginCardProps> = ({ plugin }) => {
|
|||||||
marginLeft: '16px',
|
marginLeft: '16px',
|
||||||
marginTop: '0px',
|
marginTop: '0px',
|
||||||
marginBottom: '0px',
|
marginBottom: '0px',
|
||||||
marginRight: '16px'
|
marginRight: '16px',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<span style={{ paddingLeft: '0px' }}>{plugin.description}</span>
|
<span style={{ paddingLeft: '0px' }}>{plugin.description}</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user