mirror of
https://github.com/boostorg/histogram.git
synced 2025-05-12 05:31:51 +00:00
13 lines
193 B
Python
13 lines
193 B
Python
import subprocess as subp
|
|
import sys
|
|
import os
|
|
|
|
args = sys.argv[1:]
|
|
|
|
if not os.path.isabs(args[0]):
|
|
args[0] = os.path.abspath(args[0])
|
|
|
|
exit_code = subp.call(args)
|
|
|
|
sys.exit(not exit_code)
|