possibly fix zip permissions

This commit is contained in:
AAGaming
2022-10-08 17:57:51 -04:00
parent ec907627b8
commit d689614c78
2 changed files with 11 additions and 4 deletions

View File

@@ -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

View File

@@ -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>