pyarmor-webui
pyarmor-webui copied to clipboard
Pyarmor-webui Not working with Pyarmor 8
if args.get('platforms'):
pnames = args.get('platforms')
if any([x[-1].startswith('themida.') for x in pnames]):
cmd_args.append('--enable-themida')
pnames = [x[-1].replace('themida', 'windows') for x in pnames]
cmd_args.extend(['--platform', ','.join(x[-1] for x in pnames)])
These lines fixed the issue though
Also, not saving Data > Files to dist > Data > Files. Saving to dist > Files and skipping to place them in Data folder
if args.get('platforms'): pnames = args.get('platforms') if any([x[-1].startswith('themida.') for x in pnames]): cmd_args.append('--enable-themida') pnames = [x[-1].replace('themida', 'windows') for x in pnames] cmd_args.extend(['--platform', ','.join(x[-1] for x in pnames)])这些行解决了这个问题
太感谢了!!解决了这个问题!!