Files
firefly_reports/run_backend_creation.py
2026-05-27 13:58:05 +10:00

8 lines
270 B
Python

#!/usr/bin/env python3
"""Quick script to execute create_backend_files.py"""
import subprocess
import sys
result = subprocess.run([sys.executable, 'create_backend_files.py'], cwd=r'C:\Users\Nabeel\Nextcloud\Projects\firefly_reports')
sys.exit(result.returncode)