"feat: Implement Mercedes-Benz certificate generation using Python script"

This commit is contained in:
Till Tomczak 2025-05-26 12:05:36 +02:00
parent 8f416e441c
commit cb49c70e2d

View File

@ -153,7 +153,6 @@ def generate_mercedes_certificate():
frontend_ssl_dir = "../frontend/ssl"
os.makedirs(frontend_ssl_dir, exist_ok=True)
import shutil
shutil.copy2(cert_path, os.path.join(frontend_ssl_dir, "myp.crt"))
shutil.copy2(key_path, os.path.join(frontend_ssl_dir, "myp.key"))
print(f"Zertifikate wurden in das Frontend-Verzeichnis kopiert: {os.path.abspath(frontend_ssl_dir)}")