Compare commits

..

No commits in common. "main" and "fix/tts-bridge-bind-mount-20260813130448" have entirely different histories.

3
app.py
View file

@ -1914,8 +1914,7 @@ for filename, value in files.items():
if path.is_dir():
path.rmdir()
path.write_text(value)
os.chown(path, 10001, 10001)
os.chmod(path, 0o400)
os.chmod(path, 0o600)
""".format(files_json=json.dumps(files))
encoded = base64.b64encode(installer.encode()).decode()
command = f"sudo python3 -c {__import__('shlex').quote(f'import base64;exec(base64.b64decode({encoded!r}))')}"