blob: 8fa020c49ce605185df6631e4fcfbc5d68fde4fd [file] [log] [blame]
Tim-Philipp Müller57a224f2020-07-31 07:26:11 +00001#!/usr/bin/env python3
2
3import sys
4import argparse
5import subprocess
6
7if __name__=='__main__':
8 parser = argparse.ArgumentParser()
9 parser.add_argument('fccache')
10 args = parser.parse_args()
11 sys.exit(subprocess.run([args.fccache, '-s', '-f', '-v']).returncode)