diff options
| author | AAGaming <aa@mail.catvibers.me> | 2022-10-08 17:57:51 -0400 |
|---|---|---|
| committer | AAGaming <aa@mail.catvibers.me> | 2022-10-08 17:57:51 -0400 |
| commit | d689614c78a4f2d3c89ac48512748cd2051c4c95 (patch) | |
| tree | 92aea0465231c303f39cc4631424e83fb972fddf | |
| parent | ec907627b862d66e4cc24bc8062b4123eb976529 (diff) | |
| download | decky-loader-d689614c78a4f2d3c89ac48512748cd2051c4c95.tar.gz decky-loader-d689614c78a4f2d3c89ac48512748cd2051c4c95.zip | |
possibly fix zip permissions
| -rw-r--r-- | backend/main.py | 8 | ||||
| -rw-r--r-- | frontend/src/components/store/PluginCard.tsx | 7 |
2 files changed, 11 insertions, 4 deletions
diff --git a/backend/main.py b/backend/main.py index aa38d8ac..43a7fcac 100644 --- a/backend/main.py +++ b/backend/main.py @@ -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 from asyncio import get_event_loop, sleep from json import dumps, loads from logging import DEBUG, INFO, basicConfig, getLogger -from os import getenv, path -from subprocess import call +from os import getenv, chmod from traceback import format_exc import aiohttp_cors diff --git a/frontend/src/components/store/PluginCard.tsx b/frontend/src/components/store/PluginCard.tsx index a30c3d6b..0155ff99 100644 --- a/frontend/src/components/store/PluginCard.tsx +++ b/frontend/src/components/store/PluginCard.tsx @@ -113,7 +113,10 @@ const PluginCard: FC<PluginCardProps> = ({ plugin }) => { }} 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> </p> <p @@ -122,7 +125,7 @@ const PluginCard: FC<PluginCardProps> = ({ plugin }) => { marginLeft: '16px', marginTop: '0px', marginBottom: '0px', - marginRight: '16px' + marginRight: '16px', }} > <span style={{ paddingLeft: '0px' }}>{plugin.description}</span> |
