chore: make x.py take the target as its first positional argument

This commit is contained in:
Ryan Leckey 2021-03-25 09:39:05 -07:00
parent de0f31cc0b
commit a5cdb9ffd4

2
x.py
View File

@ -11,7 +11,7 @@ from subprocess import check_call, check_output, PIPE
parser = argparse.ArgumentParser()
parser.add_argument("-v", "--verbose", action="store_true")
parser.add_argument("-q", "--quiet", action="store_true")
parser.add_argument("-t", "--target")
parser.add_argument("target")
parser.add_argument("-l", "--list-targets", action="store_true")
parser.add_argument("--coverage", action="store_true")