ladybird/Meta/gn/build/invoke_process_with_args.py
Andrew Kaster 10298f1e9a Meta: Move invoke_process_with_args.py to common location
This script was already used by both Ladybird and the Kernel, so move it
into Meta/gn/build instead.
2023-10-23 15:25:24 -06:00

7 lines
94 B
Python

#!/usr/bin/env python3
import subprocess
import sys
sys.exit(subprocess.call(sys.argv[1:]))